/* Trainer Profiles Plugin - Dark Blue Flip Card Design */

/* Dark Blue Container */
.dark-trainers-container {
    /* background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%); */
    background: linear-gradient(135deg, rgb(6, 11, 30) 0%, rgb(10, 16, 48) 18%, rgb(18, 24, 64) 32%, rgb(14, 13, 42) 45%, rgb(26, 18, 69) 55%, rgb(12, 10, 37) 68%, rgb(15, 21, 53) 82%, rgb(6, 11, 30) 100%) 0% 0% / 400% 400%;
    /* min-height: 100vh; */
    padding: 80px 0px;
    animation: 60s ease 0s infinite normal none running gradient-shift;
}

.dark-trainers-header {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-text {
    flex: 1;
}

.dark-main-title {
    /* font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0;
    letter-spacing: -1px; */
    font-family: Jost, sans-serif;
    color: rgb(255, 255, 255);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0px;
}

.dark-subtitle {
    /* font-size: 1.8rem;
    color: #8b9dc3;
    margin: 0;
    font-weight: 400; */
    font-family: Jost, sans-serif;
    color: rgb(141, 162, 255);
    font-size: 36px;
    font-weight: 400;
    /* font-style: italic; */
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 4px 0px 0px;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 16px
}


.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Carousel Wrapper */
.carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Carousel/Grid Container */
.dark-trainers-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

/* Trainer Card with Flip - Figma Design + Flip Functionality */
.trainer-card-flip {
    flex: 0 0 calc(23% - 24px) !important;
    min-width: calc(23% - 24px) !important;
    height: 360px;
    perspective: 900px;
}

.card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.trainer-card-flip:hover .card-flip-inner {
    transform: rotateY(180deg);
}

.card-flip-front,
.card-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
    top : 0px;
}

/* Front of Card - Image with text overlay */
.card-flip-front {
    position: relative;
    /* background: linear-gradient(135deg, #3a5a9f 0%, #2d4570 100%);\ */
    background: linear-gradient(90deg, rgb(77, 107, 255), rgba(77, 107, 255, 0.2));

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.card-flip-back {
    background: linear-gradient(180deg, #1a2870 0%, #244ca0 40%, #3558c8 80%, #4a70e0 100%);
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(180deg, #1a2870 0%, #244ca0 40%, #3558c8 80%, #4a70e0 100%);
    background-size: 32px 32px, 32px 32px, 100% 100%;
    transform: rotateY(180deg);
    padding: 28px 22px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    color: white;
    box-sizing: border-box;
    overflow: hidden;

}

.card-flip-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 16px 16px;
    mask-image: linear-gradient(rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.card-flip-back::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 50%;
    background: radial-gradient(rgba(100, 140, 255, 0.2) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

/* Back Content Wrapper */
.flip-back-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    height: 100%;
    padding: 0;
    align-items: flex-start;
}   

/* Card Image - Positioned on top of background */
.card-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.card-no-photo {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-initial {
    font-size: 80px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

/* Gradient Overlay - Not needed with new design */
.card-gradient {
    display: none;
}

/* Card Content */
.card-content {
    /* position: absolute  ; */
    z-index: 0; 
    color: white;
    /* text-align: center;
    margin-top: auto; */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* padding: 25px; */
    padding: 16px 13px 12px;
}

.card-name {
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 700;
    font-family: Jost, sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.card-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 400;
    margin-top: 4px;
}

/* Back of Card Styles */
.flip-back-name {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-align: left;
    line-height: 1.2;
    font-family: Jost, sans-serif;
    letter-spacing: -0.01em;
}

.flip-back-role {
    margin: 0 0 16px 0;
    font-size: 12px;
    color: rgba(160, 175, 230, 0.7);
    font-weight: 400;
    text-align: left;
    line-height: 1.3;
}

.flip-back-bio {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 1.65;
    text-align: left;
    max-height: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    font-weight: 400;
    padding-bottom: 0;
    border-bottom: none;
}

.flip-back-bio::before {
    content: '';
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, rgb(77, 107, 255), rgba(77, 107, 255, 0.2));
    border-radius: 1px;
    margin-bottom: 14px;
}

.flip-back-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    margin: auto 0 0 0;
    max-width: 100%;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.flip-back-arrow {
    position: absolute;
    /* top: 16px;
    right: 16px; */
    top: -16px;
    right: -2px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    z-index: 1000;
    pointer-events: auto !important;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.flip-back-arrow svg {
    pointer-events: none;
    width: 18px;
    height: 18px;
}

.flip-back-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
    transform: translateX(2px);
}

/* Modern Trainer Profile Detail Page */
.modern-trainer-container {
    max-width: 1100px;
    /* margin: 40px auto;
    padding: 0 20px; */
    margin-top: -80px;
    justify-content: center;
    font-size: 80px;
    font-weight: 500;
    color: white;
}

.flip-card-front-info {
    padding: 20px;
    background: linear-gradient(135deg, #2a3f6f 0%, #1e2c4d 100%);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 8px 0;
}

.flip-role {
    font-size: 0.95rem;
    color: #8b9dc3;
    margin: 0;
}

/* Back of Card - Info */
.flip-card-back {
    background: linear-gradient(135deg, #3d5a99 0%, #2a4070 100%);
    transform: rotateY(180deg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-back-name {
    /* font-size: 1.6rem;
    font-weight: 800;
    color: white;
    margin: 0 0 10px 0; */
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 700;
    font-family: Jost, sans-serif;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.flip-back-role {
    /* font-size: 1rem;
    color: #b8c5e0;
    margin: 0 0 20px 0;
    font-weight: 600; */
    color: rgba(160, 175, 230, 0.7);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 16px;
}

.flip-back-bio {
    /* font-size: 0.9rem;
    color: #d4dff0;
    line-height: 1.6;
    text-align: center; */
    color: rgb(255, 255, 255);
    text-align: left;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.flip-back-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
    /* justify-content: center; */
    margin-bottom: 20px;
}

.skill-tag {
    /* background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
    font-weight: 600; */
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
    font-size: 10.5px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.flip-back-btn {
    display: inline-block;
    padding: 10px 28px;
    background: white;
    color: #2a4070;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.flip-back-btn:hover {
    background: #f0f4ff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #2a4070;
    text-decoration: none;
}

/* Responsive Design for Dark Flip Cards */
@media (max-width: 1200px) {
    .trainer-card-flip {
        flex: 0 0 calc(31% - 20px) !important;
        min-width: calc(31% - 20px) !important;
    }
    
    .dark-trainers-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .trainer-card-flip {
        flex: 0 0 calc(48% - 15px) !important;
        min-width: calc(48% - 15px) !important;
        height: 380px;
    }
    
    .dark-trainers-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dark-main-title {
        font-size: 2.8rem;
    }
    
    .dark-subtitle {
        font-size: 1.4rem;
    }
    
    .dark-trainers-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .carousel-controls {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .trainer-card-flip {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 350px !important;
        height: 400px;
        margin: 0 auto !important;
    }
    
    .dark-trainers-container {
        padding: 40px 15px;
    }
    
    .carousel-wrapper {
        padding: 0;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .dark-trainers-carousel {
        gap: 30px;
        padding: 0 20px;
    }
    
    .dark-main-title {
        font-size: 2.2rem;
    }
    
    .dark-subtitle {
        font-size: 1.2rem;
    }
    
    .flip-card {
        height: 380px;
    }
    
    .card-image {
        width: 180px;
        height: 180px;
        transform: translate(-50%, -50%);
        border: 4px solid rgba(255, 255, 255, 0.2);
    }
    
    .card-content {
        padding: 14px 12px 10px;
    }
    
    .card-name {
        font-size: 17px;
    }
    
    .flip-back-name {
        font-size: 20px;
    }
    
    .flip-back-bio {
        font-size: 13px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .trainer-card-flip {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 320px !important;
        height: 420px;
        margin: 0 auto !important;
    }
    
    .dark-trainers-carousel {
        padding: 0 15px;
    }
    
    .dark-main-title {
        font-size: 1.8rem;
    }
    
    .dark-subtitle {
        font-size: 1rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .flip-card {
        height: 360px;
    }
    
    .flip-card-img,
    .flip-card-img-placeholder {
        height: 250px;
    }
    
    .card-image {
        width: 160px;
        height: 160px;
        transform: translate(-50%, -50%);
        border: 3px solid rgba(255, 255, 255, 0.2);
    }
    
    .card-content {
        padding: 12px 10px 8px;
    }
    
    .card-name {
        font-size: 16px;
    }
    
    .card-role {
        font-size: 11px;
    }
    
    .flip-back-name {
        font-size: 18px;
    }
    
    .flip-back-role {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .flip-back-bio {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .flip-back-bio::before {
        width: 32px;
        margin-bottom: 12px;
    }
    
    .skill-tag {
        font-size: 9.5px;
        padding: 5px 10px;
    }
    
    .flip-back-arrow {
        width: 32px;
        height: 32px;
        top: 12px;
        right: 12px;
    }
    
    .flip-back-arrow svg {
        width: 16px;
        height: 16px;
    }
}


.modern-back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.modern-back-btn:hover {
    background: linear-gradient(135deg, #2d4a8f 0%, #4d6bff 100%);
    color: white;
    text-decoration: none;
    transform: translateX(-3px);
}

/* Main Profile Card */
.modern-profile-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Hero Section - Gradient Header */
.modern-hero-section {
    background: linear-gradient(135deg, #2d4a8f 0%, #4d6bff 100%);
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Photo Card - White Rounded */
.modern-photo-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    flex-shrink: 0;
}

.modern-profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.modern-profile-initial {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: 700;
}

/* Hero Info */
.modern-hero-info {
    flex: 1;
    color: white;
}

.modern-trainer-name {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.modern-summary {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.95);
    margin: 0 0 25px 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Experience Display */
.modern-experience {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.experience-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.experience-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Quick Contact Info */
.modern-contact-quick {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.contact-quick-item {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    text-decoration: none;
}

.contact-quick-item:hover {
    color: white;
    text-decoration: underline;
}

/* Social Links */
.modern-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-social-btn {
    padding: 10px 24px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.modern-social-btn:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Skills Section */
.modern-skills-section {
    padding: 50px;
    background: #f7fafc;
}

.skills-heading-wrapper {
    margin-bottom: 30px;
}

.modern-skills-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
}

.skills-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4d6bff 0%, #667eea 100%);
    border-radius: 2px;
}

.modern-skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modern-skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.modern-skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* About Section - White Background */
.modern-about-section {
    padding: 50px;
    background: white;
}

.about-heading-wrapper {
    margin-bottom: 30px;
}

.modern-about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 12px 0;
}

.about-accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.modern-about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 992px) {
    .modern-hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .modern-trainer-name {
        font-size: 2.5rem;
    }

    .experience-number {
        font-size: 3rem;
    }

    .modern-contact-quick {
        justify-content: center;
    }

    .modern-social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-trainer-container {
        margin: 20px auto;
        padding: 0 15px;
    }

    .modern-hero-section {
        padding: 30px 20px;
        gap: 25px;
    }

    .modern-photo-card {
        padding: 15px;
    }

    .modern-profile-img,
    .modern-profile-initial {
        width: 150px;
        height: 150px;
    }

    .modern-profile-initial {
        font-size: 60px;
    }

    .modern-trainer-name {
        font-size: 2rem;
    }

    .modern-summary {
        font-size: 1rem;
    }

    .experience-number {
        font-size: 2.5rem;
    }

    .experience-label {
        font-size: 1rem;
    }

    .modern-about-section {
        padding: 30px 20px;
    }

    .modern-about-heading {
        font-size: 1.6rem;
    }

    .modern-about-text {
        font-size: 1rem;
    }

    .modern-contact-quick {
        flex-direction: column;
        gap: 10px;
    }

    .modern-social-links {
        flex-direction: column;
    }

    .modern-social-btn {
        width: 100%;
        text-align: center;
    }
}

/* Responsive Carousel Styles */
@media (max-width: 1400px) {
    .trainer-card-flip {
        flex: 0 0 calc(28% - 24px);
        min-width: calc(28% - 24px);
    }
}

@media (max-width: 1200px) {
    .trainer-card-flip {
        flex: 0 0 calc(31% - 20px);
        min-width: calc(31% - 20px);
    }
}

@media (max-width: 900px) {
    .dark-trainers-header {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .trainer-card-flip {
        flex: 0 0 240px;
        min-width: 240px;
        height: 380px;
    }
    
    .dark-main-title {
        font-size: 2.5rem;
    }
    
    .dark-subtitle {
        font-size: 1.4rem;
    }
    
    .card-name {
        font-size: 22px;
    }
    
    .card-role {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .dark-trainers-container {
        padding: 40px 15px;
    }
    
    .trainer-card-flip {
        flex: 0 0 280px;
        min-width: 280px;
        height: 400px;
    }
    
    .dark-main-title {
        font-size: 2rem;
    }
    
    .dark-subtitle {
        font-size: 1.2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .card-content {
        /* padding: 20px; */
        padding: 16px 13px 12px;
    }
}

/* Admin page styling */
.trainer-admin-actions {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
}
