.internship-detail-container {
    max-width: 936px;
    margin: 0 auto;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #333;
    padding-bottom: 1px;
}

.project-main {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 72px;
    align-items: flex-start; 
}

.project-info {
    width: 614px; 
    flex-shrink: 0;
}

.project-info-box {
    border: 1px solid rgb(229, 231, 234); 
    border-radius: 5px; 
    padding: 16px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-bottom: 16px;
}
.header-left {
    display: flex;
    align-items: center;
}
.header-right {
    display: flex;
    gap: 8px; 
}
.project-title {
    font-size: 32px;
    font-weight: bold;
    color: #41454D;
    margin-top: 10px;
}
.edit-button,
.delete-button {
    font-size: 12px; 
    padding: 4px 8px; 
    border: 1px solid #ccc; 
    border-radius: 4px; 
    background-color: #f9f9f9;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-button:hover {
    background-color: #e6f7ff;
    border-color: #91d5ff;
}

.delete-button:hover {
    background-color: #fff1f0; 
    border-color: #ffa39e;
    color: #ff4d4f;
}

.project-subtitle {
    font-size: 16px;
    color: #6B6F76;
}

.project-internship-type {
    font-size: 16px;
    color: #41454D;
    font-weight: bold;
    margin-right: 8px;
}

.section-divider {
    border: none;
    border-top: 1px solid rgb(229, 231, 234);
    margin: 16px 0;
}

.info-card h3 {
    font-size: 18px;
    color: #41454D;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 14px;
    color: #6B6F76;
}

.project-description {
    margin-top: 32px;
}

.project-description h2 {
    font-size: 24px;
    color: #41454D;
    margin-bottom: 16px;
}

.project-description p {
    font-size: 14px;
    color: #6B6F76;
    margin-bottom: 24px;
    line-height: 1.6;
}

.project-image {
    width: 296px; 
    flex-shrink: 0;
    text-align: center;
    position: sticky;
    top: -395px;
    align-self: flex-start;
}
.project-image img {
    max-width: 100%;
    border-radius: 8px;
}
.company-image-wrapper {
    border: 1px solid #e5e7ea; 
    border-radius: 8px;
    background-color: #ffffff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}
.image-logo-wrapper {
    display: flex;
    align-items: center; 
    justify-content: center; 
    height: 294px;
    overflow: hidden;
}
.company-image-wrapper img {
    width: 100%;
    height: 294px;
    max-height: 294px;
    object-fit: contain;
}
.status-box {
    border: 1px solid #e5e7ea;
    border-radius: 8px; 
    background-color: #ffffff; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    padding: 28px 20px;
    margin-top: 24px;
    margin-bottom: 24px;
}
.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px; 
}

.status-row span {
    text-align: center; 
}
.current-status {
    display: inline-block;
    padding: 0px 14px;
    background-color: #f1f9ff;
    color: #17A1FF;
    border-radius: 12px;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
}

.company-info-box {
    border: 1px solid #e5e7ea;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #e5e7ea;
    background-color: #f9fafb;
}

.tab-button {
    flex: 1;
    height: 61px;
    padding: 0;
    font-size: 14px;
    border: none;
    background-color: transparent;
    color: #B5B9BE;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
}

.tab-button.active {
    background-color: #ffffff;
    color: #17A1FF;
    border-bottom: 3px solid #17A1FF;
}

.tab-button:hover {
    background-color: #f1f9ff;
}

.tab-content {
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

@media (max-width: 1024px) {
    .project-main {
        flex-direction: column-reverse;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .project-info,
    .project-image {
        width: 100%;
    }

    .project-image {
        position: static;
        margin-bottom: 16px;
    }
}

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid rgb(229, 231, 234);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none; 
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    z-index: 1000;
    box-sizing: border-box;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header-logo {
    width: auto;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    margin-right: 16px;
}

.header-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    flex-grow: 1;
}

.apply-button {
    background-color: #0066cc;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 100px;
}

.apply-button:hover {
    background-color: #005bb5;
    text-decoration: none;
    color: #fff;
}
.button-group {
    display: flex;
    flex-direction: column; 
    gap: 12px; 
    width: 100%; 
    align-items: center; 
    padding: 20px;
}

.apply-now-button {
    width: 100%; 
    max-width: 254px;
    background-color: #17A1FF;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.share-button {
    width: 100%; 
    max-width: 254px;
    background-color: #fff;
    color: #17A1FF;
    border: 1px solid #17A1FF;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.apply-now-button:hover {
    background-color: #0D87DB;
    text-decoration: none;
    color: #fff;
}
.share-button:hover {
    background-color: #f9f9f9;
}

.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start; 
}

.modal-content-share {
    width: 340px;
    height: 58px;
    background-color: #ffffff; 
    border-radius: 8px;
    border: 1px #e5e7ea solid;  
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    text-align: center;
    position: relative;
    margin-top: 10%; 
}
.modal-message {
    font-size: 16px;
}


.project-description h2 {
    color: #383838; 
}
.project-description p {
    color: #1A1B1C; 
}
.tab-content p {
    text-align: left;
}

.skill-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: 0.3s;
    outline: none;
    cursor: pointer;
    white-space: nowrap;
    gap: 4px;
    height: 36px;
    padding: 0px 16px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid rgb(210, 212, 215);
    color: rgb(26, 27, 28);
    background-color: rgb(255, 255, 255);
}





#skillModal .modal-dialog {
    width: 589px; 
    height: 926px;
}
#skillModal .modal-header,
#skillModal .modal-footer {
    border: none; 
}
.modal-body.skillModal-modal {
    display: flex;
    justify-content: center; 
    align-items: center;
    margin-left: 10px; 
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
    .modal-dialog {
        margin-bottom: 120px; 
    }
}
.modal-cont {
    display: flex;
    flex-direction: column; 
    align-items: left; 
    width: 100%; 
}
#skillDescription {
    font-size: 14px;
}