.department-and-desipline-heading {
    text-align: center;
    margin-top: 4px;
    color: #093f7b;
    text-transform: uppercase;
    text-decoration: underline;
}

.department-and-desipline-head {
    font-size: 18px;
    font-weight: 600;
    line-height: 2.3;
}

.title {
    grid-column: 1 / -1;
    margin: 10px 0;
    font-size: 20px;
    font-weight: 700;
    color: #6583dd;
    text-transform: uppercase;
}

.governor-image {
    flex: 0 0 150px;
    margin-right: 25px;
}

.governor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid #245a78;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.university-officer-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #245a78;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .university-officer-img {
        width: 90px;
        height: 90px;
    }
}

/* College Faculty Profile Card CSS Styling */

.faculty-image-colleges {
    flex: 0 0 150px;
    margin-right: 25px;
}

.faculty-image-colleges img {
    width: 150px;
    height: 150px;
    border-radius: 15%;
    border: 3px solid #245a78;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}    

@media (max-width: 600px) {
    .faculty-image-colleges {
        margin: 0 0 15px 0;
    }
}  

.veterinary-anchore-link .sc-st-grievence-pdf {
    width: 4%;
}

.second-heading {
    font-size: 18px;
    font-style: italic;
    color: #449aa8d9;
    font-weight: 600;
}

.heads-nanaji-jeevan-parichay {
    color: #3069a1;
    font-size: 20px;
    font-weight: 600;
}

.sub-heading{
    color: #6583dd;
    font-size: 16px;
    font-weight: 600;
}

.under-heading{
    color: #6583dd;
    font-size: 16px;
    margin: 10px 0px 10px 0px;
    font-weight: 600;
    font-family: poppins;
}

.veterinary-college-faculty-link-anchore {
    color: #1badc1e0;
    font-weight: 600;
    font-style: italic;
    font-family: Georgia;
}

.veterinary-anchore-link {
    color: #1badc1e0;
    font-family: Georgia;
    font-weight: 600;
}

.veterinary-section {
    background:#f9f9f9; 
    border-radius:10px; 
    border-left: 5px solid #237888;
}

li {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.ms-md-1 {
    word-wrap: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

p {
    word-wrap: break-word;
    word-break: break-all;
    overflow-wrap: anywhere;
}

.veterinary-section p {
    font-size: 14px;
    word-break: normal;
    overflow-wrap: normal;
    white-space: normal;
}


.import-alert{
    background: linear-gradient(45deg, #192243, transparent);
}

.dismiss-button{
    font-size: 14px;
    color: #000;
    background: linear-gradient(45deg, #717275, transparent);
    border: 1px solid rgba(0,0,0,0.15);
    padding: 6px 18px;
    border-radius: 20px;
    cursor: pointer;

    transition: 
        background 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.25s ease,
        color 0.3s ease;
}

/* Hover Effect */
.dismiss-button:hover{
    color: #ffffff !important;
    background: linear-gradient(45deg, #cfcece, #6c6d70);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    transform: translateY(-2px);
}

/* Click (Press) Effect */
.dismiss-button:active{
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Center modal & responsive width */
#myModal .modal-dialog{
    max-width: 800px;          /* desktop */
    margin: 1.75rem auto;
}

/* Tablet */
@media (max-width: 991px){
    #myModal .modal-dialog{
        max-width: 90%;
    }
}

/* Mobile */
@media (max-width: 576px){
    #myModal .modal-dialog{
        max-width: 95%;
        margin: 1rem auto;
    }

    /* Header title responsive */
    .alert-title{
        font-size: 16px;
        gap: 6px;
    }

    .alert-title img{
        width: 24px;
    }

    /* Body height auto on mobile */
    #myModal .modal-body{
        height: auto !important;
        max-height: 60vh;
        overflow-y: auto;
    }

    /* Footer button full width */
    #myModal .modal-footer{
        justify-content: center !important;
    }

    .dismiss-button{
        width: 100%;
        text-align: center;
    }
}