/* Employee Detail Page Styles */
.employee_detail {
    margin: 20px 0;
}

.back_link {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 15px;
    color: #1b458e;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid #1b458e;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.back_link:hover {
    background-color: #1b458e;
    color: white;
    text-decoration: none;
}

.employee_detail_header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.employee_detail_image_container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #1b458e;
    flex-shrink: 0;
}

.employee_detail_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee_detail_image_placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc, #1b458e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.employee_detail_initials {
    font-size: 5rem;
    color: white;
    font-weight: bold;
}

.employee_detail_info h2 {
    margin: 0 0 10px 0;
    color: #222;
    font-size: 2.5rem;
}

.employee_detail_role {
    font-size: 1.3rem;
    color: #1b458e;
    font-weight: 600;
    margin: 0;
}

.employee_detail_content {
    margin: 30px 0;
}

.employee_contact_section,
.employee_bio_section,
.employee_responsibilities_section {
    margin-bottom: 30px;
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 4px solid #1b458e;
    border-radius: 5px;
}

.employee_contact_section h3,
.employee_bio_section h3,
.employee_responsibilities_section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #1b458e;
    font-size: 1.5rem;
}

.contact_info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact_info a {
    color: #1b458e;
    text-decoration: none;
}

.contact_info a:hover {
    text-decoration: underline;
}

.employee_bio_section p,
.employee_responsibilities_section p {
    line-height: 1.8;
    font-size: 1.05rem;
    color: #333;
}

.employee_contact_button_section {
    margin: 40px 0;
    text-align: center;
}

.contact_button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #1b458e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 102, 204, 0.2);
}

.contact_button:hover {
    background-color: #1b458e;
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .employee_detail_header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .employee_detail_image_container {
        width: 150px;
        height: 150px;
    }
    
    .employee_detail_initials {
        font-size: 4rem;
    }
    
    .employee_detail_info h2 {
        font-size: 2rem;
    }
    
    .employee_detail_role {
        font-size: 1.1rem;
    }
    
    .employee_contact_section,
    .employee_bio_section,
    .employee_responsibilities_section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .employee_detail_image_container {
        width: 120px;
        height: 120px;
    }
    
    .employee_detail_initials {
        font-size: 3rem;
    }
    
    .employee_detail_info h2 {
        font-size: 1.5rem;
    }
    
    .employee_detail_role {
        font-size: 1rem;
    }
    
    .contact_info p {
        font-size: 0.95rem;
    }
    
    .employee_bio_section p,
    .employee_responsibilities_section p {
        font-size: 0.95rem;
    }
}
