body {
    margin: 0;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 8px 20px;
    /* // box-shadow: 0 1px 8px var(--mds_brand_appearance_neutral_default_border-color); */
    position: fixed;
    width: 100%;
    background-color: var(--mds_brand_appearance_neutral_default_background-color);
    z-index: 20;
    border-bottom: 1px solid rgb(237, 237, 237);
}

.main-topPanel {
    height: 64px;
    background: white 0% 0% no-repeat padding-box;
}

#nav-title {
    margin-right: auto;
    display: flex;
    align-items: center;
}

header li {
    list-style: none;
    display: inline-block;
    padding: 0 8px;
}

nav ul {
    flex-direction: row !important;
}

.proj_title {
    color: #FF6000;
    margin-left: 10px;
    font-size: larger;

}

.mds ul li {
    padding: 0px 10px !important;
}

.m-t-8 {
    margin-top: 8px;
}

.dispaly-flex {
    display: flex;
}

.image-container {
    width: 100%;  /* Make the container 100% width of its parent */
    height: auto; /* or set a specific height if needed */
    overflow: hidden;  /* Optional: hides any overflow */
}

.image-container img {
    width: 100%;  /* Make the image scale to the width of the container */
    height: auto; /* Maintain the aspect ratio of the image */
    object-fit: cover; /* Optional: fill the container without distorting the aspect ratio */
}

.container {
    display: flex;  /* Create a flex container */
    align-items: center;  /* Vertically center the content */
    
}

/* Style for the image section */
.image-section img {
    width: 100%;  /* Make the image responsive */
    max-width: 500px;  /* Optional: Limit the image width */
    height: auto;  /* Maintain aspect ratio */
}

/* Style for the content section */
.content-section {
    text-align: left;  /* Align text to the left (default) */
    padding: 16px;
}

/* Optional: Styling for text */
h1, p {
    margin: 0;
}

.center-align {
    text-align: center;
}

.p-10 {
    padding: 16px;
}

.cards-actions {
    display: flex;
    justify-content: space-between;
}

.m-t-16 {
    margin-top: 16px;
}

footer {
    background-color: #333;
    text-align: center;
    color: #fff;
}


footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row !important;
    list-style: none !important;
    justify-content: center;
}

footer ul li {
    margin: 0 15px;
}

footer ul li a {
    text-decoration: none !important;
    color: #fff !important;
    font-size: 16px;
}

.footer ul li a:hover {
    color: #ff6347 !important;
}
.f-14 {
    font-size: 14px;
}

