/*====GLOBAL STYLES====*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    color: #3f415f;
    overflow-x: hidden;
    line-height: 1.5;
    background-color: #413a4e;
}

body.login-view {
    background-color: #394e6c;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

body.dashboard-view {
    background-color: #d9dbe8;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #2c3e50;
}

/*====LOGIN PAGE====*/
.login-container {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    margin: 0 auto;
    margin-top: 90px;
    
}

.login-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.login-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #4a5568;
    font-size: 0.9rem;
}

.login-card input,
.login-card select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s;
}

.login-card input:focus,
.login-card select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.login-card button {
    width: 100%;
    padding: 14px;
    background-color: #4299e1;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.login-card button:hover {
    background-color: #3182ce;
}

.error {
    background-color: #fed7d7;
    color: #c53030;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-align: center;
    border-left: 4px solid #e53e3e;
}

.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: #718096;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

/* Login mobile */
@media (max-width: 480px) {
    .login-card {
        padding: 25px 20px;
        margin-top: 60px;
    }
    
    .login-card h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .login-card input,
    .login-card select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    body.login-view {
        padding: 15px;
    }
}

/*====HEADER====*/
.header {
   background: linear-gradient(135deg, #f7faff, #f7f5ff);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 70px;
    border-bottom: 1px solid #e2e8f0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4299e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
}

.clock-display {
    font-weight: 500;
    color: #4a5568;
    padding: 8px 15px;
    background: #f7fafc;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid #e2e8f0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: 1px solid #d1d5db;
    padding: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    border-radius: 6px;
    color: #4a5568;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle:hover {
    background-color: #f7fafc;
    border-color: #4299e1;
    color: #4299e1;
}

.notification-icon {
    position: relative;
    color: #4a5568;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon:hover {
    background-color: #f7fafc;
    color: #4299e1;
}

.notification-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e53e3e;
    color: white;
    font-size: 0.7rem;
    padding: 4px 6px;
    border-radius: 50%;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
}

.user-image:hover {
    border-color: #4299e1;
}

.user-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    z-index: 1000;
    display: none;
    margin-top: 10px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    padding: 12px 20px;
    display: block;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f7fafc;
    color: #4299e1;
}

.dropdown-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 8px 0;
    border: none;
}


/*====USER ICON====*/
.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
    background-color: #f7fafc;
}

.user-icon:hover {
    border-color: #4299e1;
    color: #4299e1;
    background-color: #ebf8ff;
}

/* User icon mobile */
@media (max-width: 768px) {
    .user-icon {
        width: 35px;
        height: 35px;
    }
    
    .user-icon i {
        font-size: 1.5rem !important;
    }
}

/* Header mobile */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .clock-display {
        display: none;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    .header-left,
    .header-right {
        gap: 10px;
    }

    .logo {
    font-size: 1.3rem;
}

}

/*====SIDEBAR====*/
.sidebar {
   background: linear-gradient(135deg, #312b3e, #4b4f78);

    border-right: 1px solid #e2e8f0;
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    width: 240px;
   
    z-index: 90;
    overflow-y: auto;
    transition: transform 0.3s;
}

.nav-menu {
    list-style: none;
    padding: 20px 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 7px 24px;
     color: #f3f3ff;
    text-decoration: none;
    font-weight: 500;
    border-left: 4px solid transparent;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: #f7fafc;
    color: #4299e1;
}

.nav-link.active {
    background-color: #ebf8ff;
    color: #4299e1;
    font-weight: 600;
    border-left-color: #252865;
}

/* Sidebar mobile */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.show {
        transform: translateX(0);
    }
    
    .overlay {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 89;
        display: none;
    }
    
    .overlay.show {
        display: block;
    }
}

/*====MAIN CONTENT====*/
.main-content {
    margin-left: 240px;
    padding: 60px;
   background: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 50%, #dbe7f5 100%);
    min-height: calc(100vh - 70px);
    margin-top: 70px;
}

/* Main content mobile */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: 20px 15px;
        min-height: calc(100vh - 70px);
    }
}

/*==================DASHBOARD PAGE STARTS==================*/
.dashboard-container {
    padding: 0;
    background-color: transparent;
    min-height: auto;
}

.dashboard-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    letter-spacing: -0.5px;
    
}

@media (max-width: 768px) {
    .dashboard-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
}

/*STATS GRID*/
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.icon-box {
    margin-right: 15px;
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 50px;
}

.stat-staff .icon-box { background-color: #4299e1; }
.stat-coach .icon-box { background-color: #48bb78; }
.stat-player .icon-box { background-color: #ed8936; }
.stat-fan .icon-box { background-color: #9f7aea; }

.text-box .stat-label {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
    font-weight: 500;
}

.text-box .stat-count {
    margin: 5px 0 0 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

/* Stats grid mobile */
@media (max-width: 768px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .text-box .stat-count {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .stat-card {
        padding: 15px;
    }
    
    .icon-box {
        padding: 12px;
        min-width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/*QUICK LINKS*/
.quick-links-modern {
    margin-bottom: 30px;
  
}

.links-title {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.quick-link-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    color: #fff;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.quick-link-btn i {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.quick-link-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-primary-alt { background-color: #4299e1; }
.btn-success-alt { background-color: #48bb78; }
.btn-info-alt { background-color: #4299e1; }
.btn-warning-alt { background-color: #ed8936; }
.btn-secondary-alt { background-color: #718096; }
.btn-dark-alt { background-color: #2c3e50; }

/* Quick links mobile */
@media (max-width: 768px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-link-btn {
        padding: 20px 12px;
        font-size: 0.9rem;
    }
    
    .quick-link-btn i {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*REPORTS SECTION*/
.reports-section {
    margin-top: 30px;
}

.placeholder-box {
    background-color: #fff;
    border: 1px dashed #cbd5e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    color: #718096;
    font-size: 0.95rem;
}

/* Reports mobile */
@media (max-width: 480px) {
    .placeholder-box {
        padding: 20px 15px;
        font-size: 0.9rem;
    }
}



/* =======ADD STUFF MEMBER PAGE==== */

.page-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    margin-left: 1px;
}

.page-header h1 {
    font-size: 1.4rem;
    color: #4b5172;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.4px;
    margin-top: -17px;
}

.page-header h1 i {
    color: #4299e1;
}

.page-description {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.alert i {
    font-size: 1.1rem;
    margin-top: 2px;
}

.alert-error {
    background-color: #fed7d7;
    color: #c53030;
    border-left: 4px solid #e53e3e;
}

.alert-success {
    background-color: #c6f6d5;
    color: #22543d;
    border-left: 4px solid #48bb78;
}



/* FORM CONTAINER*/
.form-container {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    padding: 30px;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.1rem;
    color: #2b385e;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #718096;
    font-size: 1.1rem;
}

.section-note {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-style: italic;
}

/* Form grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Full width form group for image upload */
.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #353565;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: #5e658b;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
    transition: all 0.3s;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.form-group input[type="date"] {
    padding: 11px 15px;
}

/* Image upload container */
.image-upload-container {
  background: linear-gradient(135deg, #9652a7, #6a74b8);

    border-radius: 10px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    margin-top: 10px;
}

.image-preview-container {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .image-preview-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }



}

.image-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    font-size: 2.5rem;
}

.upload-info {
    flex: 1;
    min-width: 0;
}

.upload-info p {
    margin: 0 0 12px 0;
    color: #e1e8f5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.file-size-warning {
    color: #ed8936;
    font-weight: 500;
    margin-bottom: 15px !important;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    margin-bottom: 15px;
}

.file-input-wrapper input[type=file] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.btn-upload1 {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Nunito', sans-serif;
}

.btn-upload1:hover {
    background: linear-gradient(135deg, #9cc2e7 0%, #b67ae9 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
}

.file-info {
    margin-top: 15px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #4a5568;
    display: none;
}

.file-info span {
    font-weight: 500;
}

.file-success {
    color: #48bb78;
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

.file-size-warning-text {
    color: #ed8936;
    font-size: 0.85rem;
    margin-top: 8px;
    font-weight: 500;
}

/* Accepted file types */
.accepted-files {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #718096;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.accepted-files i {
    color: #48bb78;
}

/* Password input */
.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #718096;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.toggle-password:hover {
    color: #4299e1;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: #a0aec0;
    font-size: 0.8rem;
    font-style: italic;
}

/* Form actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.btn-submit {
    padding: 14px 30px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.2);
}

.btn-cancel {
    padding: 14px 25px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    color: #4a5568;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: 'Nunito', sans-serif;
}

.btn-cancel:hover {
    background: linear-gradient(135deg, #cbd5e0 0%, #a0aec0 100%);
    color: #2d3748;
    transform: translateY(-2px);
}

/* Form grid mobile */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-section {
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .page-header h1 {
        font-size: 1.2rem;
        margin-top: 10px;
    }
    
    .image-upload-container {
        padding: 15px;
    }
    
    .image-preview {
        width: 100px;
        height: 100px;
    }
    
    .image-preview-placeholder {
        font-size: 2rem;
    }
    
    .btn-upload {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .form-actions {
        flex-direction: column;
    }
    
    .btn-submit,
    .btn-cancel {
        width: 100%;
        justify-content: center;
    }
    
    .alert {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .image-preview-container {
        align-items: center;
        text-align: center;
    }
    
    .upload-info {
        text-align: center;
    }
    
    .accepted-files {
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 360px) {
    .form-container {
        padding: 15px;
    }
    
    .image-preview {
        width: 90px;
        height: 90px;
    }
    
    .btn-upload {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}


/* === DELETE CONFIRMATION MODAL === */

.delete-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
}

.delete-modal.show {
    display: flex;
    opacity: 1;
}

.delete-modal-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 480px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.delete-modal.show .delete-modal-content {
    transform: translateY(0);
}

.delete-modal-header {
    padding: 24px;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    border-bottom: 1px solid #fed7d7;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.delete-modal-icon {
    width: 50px;
    height: 50px;
    background: #f56565;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.delete-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #c53030;
    font-weight: 600;
    flex: 1;
}

.delete-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #a0aec0;
    cursor: pointer;
    padding: 4px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    position: absolute;
    top: 20px;
    right: 20px;
}

.delete-modal-close:hover {
    background: #fff;
    color: #f56565;
}

.delete-modal-body {
    padding: 24px;
}

.delete-warning-text {
    margin: 0 0 20px 0;
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.delete-warning-text strong {
    color: #2c3e50;
    font-weight: 600;
}

.delete-consequences {
    background: #fff5f5;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
    border: 1px solid #fed7d7;
}

.delete-consequences p {
    margin: 0 0 12px 0;
    color: #c53030;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.delete-consequences ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.delete-consequences li {
    padding: 8px 0;
    color: #718096;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #fed7d7;
}

.delete-consequences li:last-child {
    border-bottom: none;
}

.delete-consequences li i {
    color: #f56565;
    width: 18px;
    text-align: center;
}

.delete-modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-cancel-delete {
    padding: 12px 24px;
    background: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
}

.btn-cancel-delete:hover {
    background: #cbd5e0;
    color: #2d3748;
    transform: translateY(-1px);
}

.btn-confirm-delete {
    padding: 12px 24px;
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Nunito', sans-serif;
}

.btn-confirm-delete:hover {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .delete-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .delete-modal-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .delete-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .delete-modal-body {
        padding: 20px;
    }
    
    .delete-modal-footer {
        flex-direction: column;
    }
    
    .btn-cancel-delete,
    .btn-confirm-delete {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .delete-modal-header {
        padding: 16px;
    }
    
    .delete-modal-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .delete-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .delete-modal-body {
        padding: 16px;
    }
    
    .delete-warning-text {
        font-size: 0.95rem;
    }
    
    .delete-consequences {
        padding: 12px;
    }
    
    .delete-consequences li {
        font-size: 0.9rem;
    }
}


/* =======MANAGE STUFF PAGE======= */

/* Filter Section */
.filter-section {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-header h3 i {
    color: #4299e1;
}

.btn-add-new {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-add-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(66, 153, 225, 0.3);
    background: linear-gradient(135deg, #3182ce 0%, #2c5282 100%);
}

/* Filter Form */
.filter-form {
    margin-top: 20px;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-group label i {
    color: #a0aec0;
    font-size: 0.85rem;
}

.filter-group input,
.filter-group select {
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #4a5568;
    background: #fff;
    transition: all 0.3s;
    width: 100%;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-filter {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
    font-family: 'Nunito', sans-serif;
}

.btn-filter:hover {
    background: linear-gradient(135deg, #38a169 0%, #2f855a 100%);
    transform: translateY(-1px);
}

.btn-clear {
    background: #e2e8f0;
    color: #4a5568;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-clear:hover {
    background: #cbd5e0;
    color: #2d3748;
}

/* TABLE CARD STYLING STYLING */

.staff-cards-section {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.section-title {
    font-size: 1.2rem;
    color: #2c3e50;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: #4299e1;
}

.staff-count {
    background: #f7fafc;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

/* Cards Grid */
.staff-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Staff Card */
.staff-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e0;
}

/* Card Header */
.card-header {
    padding: 20px;
    background: linear-gradient(135deg, #ced5f9 0%, #edf2f7 100%);
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.staff-image-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
}

.staff-image {
    width: 110%;
    height: 110%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.staff-image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    border: 3px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.staff-name {
    margin: 0;
    font-size: 1.1rem;
    color: #41426f;
    font-weight: 600;
    line-height: 1.3;
}

/* Card Body */
.card-body {
    padding: 20px;
    flex: 1;
}

.staff-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.detail-row i {
    color: #4299e1;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-row span {
    color: #4a5568;
    line-height: 1.4;
    word-break: break-word;
}

/* Badges Container */
.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

/* Role Badge */
.role-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.role-coach { 
    background: #48bb78;
    color: white;
}

.role-admin { 
    background: #9f7aea;
    color: white;
}

.role-medical { 
    background: #ed8936;
    color: white;
}

.role-technical { 
    background: #4299e1;
    color: white;
}

.role-other { 
    background: #718096;
    color: white;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-active {
    background: #48bb78;
    color: white;
}

.status-inactive {
    background: #f56565;
    color: white;
}

/* Access Badge */
.access-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

/* Card Footer */
.card-footer {
    padding: 15px 20px;
    background: #f7fafc;
    border-top: 1px solid #e2e8f0;
}

.card-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.card-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #ffffff;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #7485c1, #3498db); /* skylight blue */
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.25);
}

/* Optional: keep classes for logic, not color */
.card-action-btn.btn-edit,
.card-action-btn.btn-view,
.card-action-btn.btn-delete {
    background: linear-gradient(135deg, #a3d4f4, #717ed2);
}

/* Hover effect */
.card-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(52, 152, 219, 0.35);
    filter: brightness(1.05);
}

/* Active / click state */
.card-action-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.25);
}


/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border: 1px dashed #cbd5e0;
    border-radius: 8px;
}

.empty-icon {
    font-size: 3.5rem;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #4c4d79;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    letter-spacing: -0.4px;
}

.empty-state p {
    color: #718096;
    margin: 0 0 25px 0;
    font-size: 0.9rem;
}

.btn-add-first {
    background: #4299e1;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-add-first:hover {
    background: #3182ce;
    transform: translateY(-2px);
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.pagination-info {
    color: #718096;
    font-size: 0.9rem;
}

.pagination-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.page-link:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
}

.page-link.active {
    background: #4299e1;
    border-color: #4299e1;
    color: white;
}

.page-dots {
    padding: 8px 16px;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .staff-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .staff-cards-section {
        padding: 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .staff-cards-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 15px;
    }
    
    .card-header,
    .card-body,
    .card-footer {
        padding: 15px;
    }
    
    .staff-image-container {
        width: 70px;
        height: 70px;
    }
    
    .staff-image-placeholder {
        font-size: 1.5rem;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .pagination-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .staff-cards-section {
        padding: 15px;
    }
    
    .staff-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .staff-card {
        border-radius: 8px;
    }
    
    .staff-image-container {
        width: 65px;
        height: 65px;
    }
    
    .card-actions {
        gap: 10px;
    }
    
    .card-action-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .empty-state {
        padding: 30px 15px;
    }
    
    .empty-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.1rem;
    }
    
    .detail-row {
        font-size: 0.85rem;
    }
    
    .badges-container {
        justify-content: center;
    }
    
    .role-badge,
    .status-badge {
        padding: 5px 10px;
        font-size: 0.7rem;
    }
    
    .pagination-links .page-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
 
    .filter-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .btn-add-new {
        align-self: stretch;
        justify-content: center;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .filter-actions {
        justify-content: flex-end;
    }
    
}

@media (max-width: 480px) {

    
    .filter-section {
        padding: 16px;
    }
    
    .btn-add-new,
    .btn-filter,
    .btn-clear {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .action-buttons {
        gap: 5px;
    }
    
    .btn-action {
        width: 36px;
        height: 36px;
    }


}



/* ==============VIEW STAFF PAGE STARTS=========== */

        /* Breadcrumb Navigation */
        .viewstaff-breadcrumb-nav {
            background: #fff;
            padding: 15px 20px;
            border-radius: 10px;
            margin-bottom: 25px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #718096;
        }
        
        .viewstaff-breadcrumb-nav a {
            color: #4299e1;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .viewstaff-breadcrumb-nav a:hover {
            color: #3182ce;
            text-decoration: underline;
        }
        
        .viewstaff-breadcrumb-nav span {
            color: #2c3e50;
            font-weight: 600;
        }
        
        .viewstaff-breadcrumb-nav i.fa-chevron-right {
            font-size: 0.7rem;
            color: #cbd5e0;
        }
        
        /* Staff Profile Header */
        .viewstaff-profile-header {
            background: linear-gradient(135deg, #3f4d8d 0%, #684ba2 100%);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .viewstaff-profile-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(100px, -100px);
        }
        
        .viewstaff-header-content {
            display: flex;
            align-items: center;
            gap: 25px;
            position: relative;
            z-index: 2;
        }
        
        .viewstaff-profile-avatar {
            position: relative;
            flex-shrink: 0;
        }
        
        .viewstaff-avatar-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255,255,255,0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .viewstaff-avatar-placeholder {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            border: 4px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .viewstaff-status-indicator {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 3px solid white;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .viewstaff-status-indicator i {
            font-size: 0.6rem;
        }
        
        .viewstaff-status-active {
            background-color: #48bb78;
        }
        
        .viewstaff-status-inactive {
            background-color: #a0aec0;
        }
        
        .viewstaff-profile-info {
            flex: 1;
        }
        
        .viewstaff-profile-info h1 {
            margin: 0 0 10px 0;
            font-size: 2rem;
            font-weight: 700;
            color: white;
            letter-spacing: -0.5px;
        }
        
        .viewstaff-profile-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .viewstaff-role-badge {
            background: rgba(255,255,255,0.2);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .viewstaff-member-since, .viewstaff-system-role {
            font-size: 0.9rem;
            opacity: 0.9;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        
        .viewstaff-header-actions {
            display: flex;
            flex-direction: column;
            gap: 10px;
            flex-shrink: 0;
        }
        
        .viewstaff-btn-action {
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
            text-align: center;
            min-width: 140px;
        }
        
        .viewstaff-btn-edit {
            background: white;
            color: #667eea;
        }
        
        .viewstaff-btn-edit:hover {
            background: #f7fafc;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        
        .viewstaff-btn-back {
            background: rgba(255,255,255,0.1);
            color: white;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .viewstaff-btn-back:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        
        /* Content Grid */
        .viewstaff-content-grid {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 25px;
        }
        
        /* Info Cards */
        .viewstaff-info-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            margin-bottom: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .viewstaff-info-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
        }
        
        .viewstaff-card-header {
            padding: 20px 25px;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .viewstaff-card-header h3 {
            margin: 0;
            font-size: 1.1rem;
            color: #2c3e50;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .viewstaff-card-header i {
            color: #667eea;
        }
        
        .viewstaff-card-body {
            padding: 25px;
        }
        
        /* Info Grid */
        .viewstaff-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .viewstaff-info-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .viewstaff-info-label {
            font-size: 0.85rem;
            color: #718096;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .viewstaff-info-label i {
            width: 16px;
            color: #a0aec0;
        }
        
        .viewstaff-info-value {
            font-size: 1rem;
            color: #2c3e50;
            font-weight: 500;
            line-height: 1.4;
        }
        
        .viewstaff-info-value a {
            color: #4299e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .viewstaff-info-value a:hover {
            color: #3182ce;
            text-decoration: underline;
        }
        
        /* Access Details */
        .viewstaff-access-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .viewstaff-access-level {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }
        
        .viewstaff-access-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #4299e1, #667eea);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .viewstaff-access-info h4 {
            margin: 0 0 5px 0;
            font-size: 1rem;
            color: #4a5568;
        }
        
        .viewstaff-access-info p {
            margin: 0;
            font-size: 1.1rem;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .viewstaff-permissions-list h4 {
            margin: 0 0 15px 0;
            font-size: 1rem;
            color: #4a5568;
        }
        
        .viewstaff-permissions-list ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .viewstaff-permissions-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #4a5568;
        }
        
        .viewstaff-text-success {
            color: #48bb78;
        }
        
        .viewstaff-text-muted {
            color: #a0aec0;
        }
        
        /* Status Info */
        .viewstaff-status-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .viewstaff-status-badge-large {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            min-width: 200px;
            justify-content: center;
        }
        
        .viewstaff-status-badge-large i {
            font-size: 1.2rem;
        }
        
        .viewstaff-status-badge-large.viewstaff-status-active {
            background: linear-gradient(135deg, #48bb78, #38a169);
        }
        
        .viewstaff-status-badge-large.viewstaff-status-inactive {
            background: linear-gradient(135deg, #a0aec0, #718096);
        }
        
        .viewstaff-activity-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
        }
        
        .viewstaff-stat-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }
        
        .viewstaff-stat-icon {
            width: 40px;
            height: 40px;
            background: #4299e1;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }
        
        .viewstaff-stat-content {
            flex: 1;
        }
        
        .viewstaff-stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            line-height: 1;
        }
        
        .viewstaff-stat-label {
            font-size: 0.85rem;
            color: #718096;
            margin-top: 5px;
        }
        
        /* Teams List */
        .viewstaff-teams-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        
        .viewstaff-team-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s;
        }
        
        .viewstaff-team-item:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
        }
        
        .viewstaff-team-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ed8936, #dd6b20);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
        }
        
        .viewstaff-team-info {
            flex: 1;
        }
        
        .viewstaff-team-info h4 {
            margin: 0 0 5px 0;
            font-size: 1rem;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .viewstaff-team-info p {
            margin: 0;
            font-size: 0.9rem;
            color: #718096;
        }
        
        .viewstaff-team-link {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s;
            padding: 8px;
            border-radius: 6px;
        }
        
        .viewstaff-team-link:hover {
            color: #4299e1;
            background: #edf2f7;
        }
        
        /* Quick Actions */
        .viewstaff-quick-actions {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        
        .viewstaff-action-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px 10px;
            border-radius: 10px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            color: #4a5568;
            text-decoration: none;
            transition: all 0.3s;
            text-align: center;
        }
        
        .viewstaff-action-btn:hover {
            background: #edf2f7;
            border-color: #cbd5e0;
            transform: translateY(-2px);
        }
        
        .viewstaff-action-btn i {
            font-size: 1.5rem;
            margin-bottom: 8px;
            color: #4299e1;
        }
        
        .viewstaff-action-btn span {
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .viewstaff-action-btn.viewstaff-btn-danger i {
            color: #f56565;
        }
        
        .viewstaff-action-btn.viewstaff-btn-danger:hover {
            background: #fff5f5;
            border-color: #fed7d7;
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .viewstaff-content-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .viewstaff-profile-header {
                padding: 20px;
            }
            
            .viewstaff-header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            
            .viewstaff-profile-meta {
                justify-content: center;
            }
            
            .viewstaff-header-actions {
                width: 100%;
                flex-direction: row;
                justify-content: center;
            }
            
            .viewstaff-btn-action {
                min-width: auto;
                flex: 1;
            }
            
            .viewstaff-info-grid {
                grid-template-columns: 1fr;
            }
            
            .viewstaff-activity-stats {
                grid-template-columns: 1fr;
            }
            
            .viewstaff-quick-actions {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .viewstaff-breadcrumb-nav {
                font-size: 0.8rem;
                padding: 12px 15px;
                flex-wrap: wrap;
            }
            
            .viewstaff-profile-info h1 {
                font-size: 1.5rem;
            }
            
            .viewstaff-avatar-image,
            .viewstaff-avatar-placeholder {
                width: 100px;
                height: 100px;
            }
            
            .viewstaff-avatar-placeholder i {
                font-size: 2.5rem;
            }
            
            .viewstaff-profile-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .viewstaff-header-actions {
                flex-direction: column;
            }
            
            .viewstaff-quick-actions {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .viewstaff-card-body {
                padding: 20px;
            }
            
            .viewstaff-status-badge-large {
                min-width: 150px;
                padding: 12px 20px;
            }
        }