/*
Theme Name: Doctor Person Portfolio V4
Theme URI: https://example.ae/
Author: Rezaul Karim
Author URI: https://example.ae/
Description: A WordPress theme for a Doctor person's portfolio - Modern Pink Design
Version: 4.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Doctor Person Portfolio
*/

/* Import Bootstrap */
@import url('assets/css/bootstrap.min.css');

/* ==================== ROOT VARIABLES ==================== */
:root {
    --primary-color: #E91E63;
    --secondary-color: #F06292;
    --accent-color: #FF4081;
    --light-pink: #FCE4EC;
    --soft-pink: #F8BBD0;
    --dark-pink: #C2185B;
    --text-dark: #2C2C2C;
    --text-light: #6C6C6C;
    --bg-light: #FFF5F8;
    --bg-white: #FFFFFF;
    --success: #66BB6A;
    --shadow-sm: 0 2px 8px rgba(233, 30, 99, 0.1);
    --shadow-md: 0 8px 24px rgba(233, 30, 99, 0.15);
    --shadow-lg: 0 16px 48px rgba(233, 30, 99, 0.2);
}

/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    line-height: 1.7;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.display-1, .display-2, .display-3, .display-4 {
    font-weight: 800;
}

a {
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== UTILITY CLASSES ==================== */
.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-danger {
    color: var(--secondary-color) !important;
}

.text-warning {
    color: var(--accent-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.bg-primary-subtle {
    background: linear-gradient(135deg, #FCE4EC 0%, #F8BBD0 100%) !important;
}

.bg-secondary-subtle {
    background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 100%) !important;
}

.bg-accent-subtle {
    background: linear-gradient(135deg, #FFE4E8 0%, #FFD0D6 100%) !important;
}

.bg-light {
    background: linear-gradient(135deg, #FFF5F8 0%, #FCE4EC 50%, #FFF5F8 100%) !important;
}

/* ==================== BUTTONS ==================== */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-gradient:hover {
    opacity: 1;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
    color: white;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-pink), var(--primary-color));
    color: white;
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-outline-danger {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-danger:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-outline-warning {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline-warning:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

/* ==================== CARDS ==================== */
.card {
    border-radius: 20px;
    border: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

/* ==================== PROGRESS BAR ==================== */
.progress-bar {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* ==================== BADGES ==================== */
.badge {
    border-radius: 50px;
    font-weight: 600;
}

/* ==================== FORMS ==================== */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* ==================== SOCIAL ICONS ==================== */
.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(233, 30, 99, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-in;
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-pink);
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* ==================== WORDPRESS SPECIFIC ==================== */
.wp-block-image img {
    border-radius: 15px;
}

.alignwide {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* WordPress Admin Bar Fix */
body.admin-bar .navbar.fixed-top {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .navbar.fixed-top {
        top: 46px;
    }
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .navbar,
    .floating-btn,
    .scroll-top-btn,
    footer {
        display: none !important;
    }
    
    body {
        background: white;
    }
}

/* ==================== ACCESSIBILITY ==================== */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==================== LEGACY SUPPORT ==================== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 228, 236, 0.95) 100%) !important;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(233, 30, 99, 0.15);
    border-bottom: 2px solid rgba(233, 30, 99, 0.1);
}

.navbar-brand {
    font-size: 1.5rem !important;
    font-weight: 700;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-pills .nav-link {
            border-radius: 50px;
            padding: 0.6rem 1.5rem;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .nav-pills .nav-link:hover {
            background-color: rgba(233, 30, 99, 0.1);
            border-color: rgba(233, 30, 99, 0.3);
        }

        .nav-pills .nav-link.active {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
        }


.gradient-text {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    transition: all 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    color: white;
}

.hero-section {
            min-height: 100vh;
            padding-top: 100px;
            background: linear-gradient(135deg, #FFF0F5 0%, #FCE4EC 50%, #F8BBD0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(233, 30, 99, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 98, 146, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, 30px) rotate(180deg); }
        }

        .hero-section .row {
            position: relative;
            z-index: 1;
        }
        
.badge-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

 .stat-card {
            transition: all 0.4s;
            background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
            border: 2px solid rgba(233, 30, 99, 0.1) !important;
        }

        .stat-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2) !important;
            border-color: var(--primary-color) !important;
        }

        .service-card {
            transition: all 0.4s;
            border: 2px solid rgba(233, 30, 99, 0.08) !important;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            border-color: var(--primary-color) !important;
            box-shadow: 0 20px 50px rgba(233, 30, 99, 0.25) !important;
        }

        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transition: all 0.3s;
        }

        .service-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }
/* Support for older sections from previous version */
.nbt-page-tabs {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 20px;
}

.nbt-page-tabs h1 {
    color: white !important;
}

.nbt-page-tabs .nav-pills .nav-link {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.nbt-page-tabs .nav-pills .nav-link.active {
    background: white !important;
    color: var(--primary-color) !important;
}

/* About Section Cards */
.about-sec .card {
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF 100%);
    border: 2px solid var(--light-pink);
}

.about-sec .card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

/* Specialist Section */
.specialist-sec {
    background: linear-gradient(135deg, #FCE4EC 0%, #F3E5F5 100%);
}

/* Chamber Section */
#chamber .card {
    border: 2px solid var(--light-pink);
}

#chamber .image-overlay-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

#chamber .image-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 99, 0.7) 100%);
    z-index: 1;
}

#chamber .overlay-title {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

#chamber .title-box {
    background: white !important;
    color: var(--primary-color) !important;
    padding: 8px 20px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.chamber-card {
    overflow: hidden;
    border-radius: 20px !important;
    transition: all 0.4s;
    border: 2px solid rgba(233, 30, 99, 0.1) !important;
}

.chamber-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(233, 30, 99, 0.2) !important;
}

.chamber-card img {
    height: 250px;
    transition: transform 0.4s;
}

.chamber-card:hover img {
    transform: scale(1.1);
}


/* Gallery Section */
#gallery {
    background: var(--bg-light);
}

#gallery .card-media-wrapper {
    height: 250px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Testimonials */
#testimonial {
    background: linear-gradient(135deg, #F3E5F5 0%, #FCE4EC 100%);
}

/* Responsive Carousel Arrows */
.testimonial-arrow {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: scale(1.1);
}

.testimonial-arrow i {
    font-size: 1.5rem;
}

/* Desktop: Position arrows outside */
@media (min-width: 992px) {
    .carousel-control-prev.testimonial-arrow {
        left: -80px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-control-next.testimonial-arrow {
        right: -80px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-control-next.testimonial-arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .carousel-control-prev.testimonial-arrow:hover {
        transform: translateY(-50%) scale(1.1);
    }
}

/* Tablet and Mobile: Position arrows inside at bottom */
@media (max-width: 991px) {
    .carousel-control-prev.testimonial-arrow {
        left: 10px;
        bottom: 10px;
        top: auto;
    }
    
    .carousel-control-next.testimonial-arrow {
        right: 10px;
        bottom: 10px;
        top: auto;
    }
}

/* Mobile: Smaller arrows */
@media (max-width: 576px) {
    .testimonial-arrow {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-arrow i {
        font-size: 1.2rem;
    }
}

/* FAQ */
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FCE4EC 0%, #FFF0F5 100%);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(233, 30, 99, 0.25);
}

/* Blog Section */
.blog .card {
    box-shadow: var(--shadow-sm);
}

.blog .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ==================== CUSTOM COMPONENTS ==================== */
/* Stats Cards */
.stat-card {
    transition: all 0.4s;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
    border: 2px solid rgba(233, 30, 99, 0.1) !important;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color) !important;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: -50px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
}

/* ==================== PERFORMANCE OPTIMIZATIONS ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== DARK MODE SUPPORT (Future) ==================== */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here in future updates */
}

/* ==================== FOOTER STYLES ==================== */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b2e 100%);
    color: white;
    position: relative;
    margin-top: 80px;
}

/* Wave SVG at Top */
.footer-wave-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

/* Footer Logo */
.footer-logo .custom-logo-link img {
    max-height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Text Colors */
.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Footer Links */
.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    transition: all 0.3s;
}

.footer-links a {
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: white !important;
    padding-left: 8px;
}

.footer-links a i {
    font-size: 12px;
    transition: transform 0.3s;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

/* Social Icons in Footer */
.social-icon-footer {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon-footer:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

/* Newsletter Form */
.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: white;
    padding: 0.75rem 1rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.newsletter-form .btn-gradient {
    border-radius: 0;
    padding: 0.75rem 1.25rem;
}

/* Footer Divider */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

/* ==================== FLOATING BUTTONS ==================== */
/* WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 10px 45px rgba(37, 211, 102, 0.8);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    font-size: 1.5rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s;
}

.scroll-to-top.show {
    display: flex;
    animation: fadeInUp 0.3s;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 767.98px) {
    .modern-footer {
        margin-top: 60px;
    }
    
    .footer-wave-top svg {
        height: 60px;
    }
    
    .floating-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }
    
    .scroll-to-top {
        bottom: 5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
}
/* ==================== END OF STYLESHEET ==================== */