/* staff-management.css */
.staff-list {
    display: flex;
    flex-wrap: wrap;
}

.staff-member {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    width: 300px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    text-align: center;
	height:350px;
	/* max-height:700px; */
}

.staff-member img {
    /* Set fixed size for the images */
    width: 150px; /* Adjust the size as needed */
    height: 150px; /* Adjust the size as needed */

    /* Ensure the image covers the entire container without distortion */
    object-fit: cover;
    
    /* Make the image round */
    border-radius: 50%; 
    
    /* Add border and initial border color */
    border: 3px solid #1c25bd; /* Adjust border width and color as needed */
    
    /* Add shadow effect */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    /* Ensure image aligns properly */
    display: block;
    margin: 0 auto 10px auto; /* Center the image and add margin at the bottom */
    
    /* Transition effect for hover */
    transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.staff-member img:hover {
    /* Enhance shadow on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    
    /* Slightly scale up the image */
    transform: scale(1.1);
    
    /* Change border color on hover */
    border-color: #007bff; /* Adjust hover border color as needed */
}

 /* Style the button that is used to open and close collapsible content */
.collapsible {
    background-color: #33afff;
    color: #fff;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
}

.collapsible.active, .collapsible:hover {
    background-color: #555;
}

/* Style the collapsible content */
.content {
    padding: 0 18px;
    display: none; /* Hidden by default */
    overflow: hidden;
    background-color: #f1f1f1;
}





