/* ========================================
   FITQUEST - MAIN STYLES (ENHANCED MOBILE)
   ======================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    min-height: 100vh;
    /* Better text rendering on mobile */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Prevent zoom on input focus */
    -webkit-text-size-adjust: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden; /* Prevent content overflow */
}

/* Skryj mobilní layout na desktopu */
.mobile-buttons-row {
    display: none;
}

.welcome-logout-group {
    display: none;
}

/* Desktop - puvodní pozice zachována */
@media (min-width: 769px) {
    .mobile-buttons-row {
        display: none !important;
    }
    
    .welcome-logout-group {
        display: none !important;
    }
}

.header h1 {
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.5rem;
    margin-bottom: 10px;
    word-break: break-word; /* Prevent overflow */
}

/* Level Up Button - Enhanced Mobile */
.level-up-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: levelUpPulse 3s infinite;
    white-space: nowrap; /* Prevent text wrapping */
}

.level-up-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ff8a65, #ffb74d);
}

@keyframes levelUpPulse {
    0%, 100% { 
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 25px rgba(255, 107, 53, 0.8);
        transform: scale(1.02);
    }
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(138, 43, 226, 0.2);
    border: 2px solid rgba(138, 43, 226, 0.5);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    /* Better touch targets */
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-btn:hover {
    background: rgba(138, 43, 226, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    border-color: #8a2be2;
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Tab Content */
.tab-content {
    display: none;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    padding: 30px;
    min-height: 500px;
}

.tab-content.active {
    display: block;
}

/* Button Styles - Enhanced Touch Targets */
.battle-btn {
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    margin: 0 10px;
    transition: transform 0.2s ease;
    /* Better touch targets */
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.battle-btn:hover {
    transform: translateY(-2px);
}

.battle-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* RPG Stats Grid */
.rpg-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.stats-panel {
    background: rgba(138, 43, 226, 0.1);
    border-radius: 15px;
    padding: 25px;
}

.power-level {
    text-align: center;
    font-size: 2rem;
    margin: 20px 0;
    color: #da70d6;
    word-break: break-word; /* Prevent overflow */
}

.stat-bar {
    margin: 15px 0;
}

.stat-name {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap; /* Prevent overflow */
    gap: 5px;
}

.stat-progress {
    background: rgba(0, 0, 0, 0.5);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    transition: width 0.5s ease;
}

/* Course Cards */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.course-card {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    /* Better touch interaction */
    touch-action: manipulation;
}

.course-card:hover,
.course-card:active {
    transform: translateY(-5px);
}

.course-video {
    width: 100%;
    height: 150px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8a2be2;
}

/* Leaderboard - Enhanced Mobile */
.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.9rem;
}

.leaderboard-table th,
.leaderboard-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    word-break: break-word;
}

.leaderboard-table th {
    background: rgba(138, 43, 226, 0.3);
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Challenge Cards */
.challenge-card {
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    touch-action: manipulation;
}

.challenge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.challenge-card h3 {
    color: #da70d6;
    margin-bottom: 15px;
    font-size: 1.3rem;
    word-break: break-word;
}

.challenge-card p {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 20px;
}

.challenge-btn {
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s ease;
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.challenge-btn:hover {
    transform: translateY(-2px);
}

.challenge-card.completed {
    background: rgba(0, 255, 0, 0.1);
    border-color: rgba(0, 255, 0, 0.3);
}

.challenge-card.completed .challenge-btn {
    background: linear-gradient(45deg, #00ff00, #32cd32);
    cursor: default;
}

.challenge-card.completed h3 {
    color: #32cd32;
}

/* Game Map */
.map-container {
    background-image: url('https://i.imgur.com/9RTuJdD.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.enemy {
    background: none;
    border: none;
    border-radius: 0;
    width: 600px;
    height: 720px;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://i.imgur.com/iMrXAIK.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    touch-action: manipulation;
    /* Better mobile touch target */
    min-width: 200px;
    min-height: 200px;
}

.enemy:hover,
.enemy:active {
    transform: scale(1.1);
}

/* Battle Arena */
#battleCanvas {
    width: 500px;
    height: 500px;
    border-radius: 15px;
    border: 3px solid rgba(138, 43, 226, 0.8);
    display: none;
    margin: 0 auto;
    background: transparent;
    touch-action: none; /* Prevent scrolling during battle */
}

.battle-ui {
    display: none;
    margin-top: 20px;
    text-align: center;
}

.health-bars {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.health-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.5);
    height: 30px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-width: 100px;
}

.health-fill {
    height: 100%;
    background: linear-gradient(45deg, #8a2be2, #da70d6);
    transition: width 0.5s ease;
    border-radius: 15px;
}

.health-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    z-index: 10;
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 0.8rem;
    text-align: center;
}

.battle-controls {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.battle-result {
    margin: 20px 0;
    padding: 15px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    word-break: break-word;
}

.victory {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid green;
}

.defeat {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid red;
}

/* Avatar */
.avatar-container {
    text-align: center;
    padding: 40px;
}

.avatar {
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 3px solid rgba(138, 43, 226, 0.5);
    border-radius: 20px;
    background: rgba(138, 43, 226, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
}

/* ========== ENHANCED MOBILE RESPONSIVE DESIGN ========== */

/* Large Mobile / Small Tablet (768px and down) */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    /* Header Mobile - LOGOUT V HORNÍM ROHU */
    .header {
        padding: 50px 15px 25px 15px; /* VETŠÍ top padding pro logout */
        position: relative;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    /* Logout - HORNÍ PRAVÝ ROH */
    .header #logoutBtn {
        position: absolute !important;
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
        margin: 0;
        background: rgba(138, 43, 226, 0.3);
        border: 1px solid rgba(138, 43, 226, 0.5);
        border-radius: 20px;
        color: white;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10; /* Nad ostatními elementy */
        order: 0; /* Nezáleží na order, je absolute */
    }
    
    /* Logo - S DOSTATECNÝM PROSTOREM NAHORE */
    .header h1 {
        font-size: 2rem;
        margin-bottom: 0;
        padding: 0;
        order: 1;
        margin-top: 10px; /* Prostor od logout buttonu */
    }
    
    /* Subtitle - POD LOGEM */
    .header p {
        font-size: 0.9rem;
        margin: 0;
        order: 2;
        line-height: 1.4;
    }
    
    /* ZJEDNODUŠENÝ rádek - už jen welcome + daily bonus */
    .mobile-buttons-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        order: 3;
        gap: 15px;
        margin: 10px 0;
    }
    
    /* Welcome text vlevo - BEZ LOGOUT */
    .welcome-logout-group {
        display: flex;
        align-items: center;
        flex: 1;
    }
    
    .header #userWelcome {
        font-size: 0.85rem;
        margin: 0;
        text-align: left;
    }
    
    /* Daily Bonus - vpravo v rádku */
    .daily-bonus-indicator {
        position: static !important;
        font-size: 0.75rem !important;
        padding: 8px 12px !important;
        border-radius: 20px !important;
        min-height: 32px !important;
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    /* Level Up Button - VELKÝ dole */
    .level-up-btn {
        position: static !important;
        order: 4;
        padding: 15px 30px !important;
        font-size: 1rem !important;
        border-radius: 30px !important;
        min-height: 50px !important;
        width: 90% !important;
        max-width: 300px;
        margin: 10px 0 !important;
        font-weight: bold;
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5) !important;
    }
    
    /* Navigation Mobile */
    .nav-tabs {
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        flex: 1;
        min-width: auto;
    }
    
    /* Tab Content Mobile */
    .tab-content {
        padding: 20px 15px;
        min-height: 400px;
        border-radius: 15px;
    }
    
    /* RPG Grid Mobile */
    .rpg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-panel {
        padding: 20px;
        order: -1; /* Show stats first on mobile */
    }
    
    .power-level {
        font-size: 1.8rem;
        margin: 15px 0;
    }
    
    /* Course Grid Mobile */
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .course-video {
        height: 120px;
        font-size: 2rem;
    }
    
    /* Leaderboard Mobile */
    .leaderboard-table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 10px 8px;
        min-width: 80px;
    }
    
    /* Battle System Mobile */
    #battleCanvas {
        width: 90%;
        max-width: 400px;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .health-bars {
        flex-direction: column;
        gap: 10px;
    }
    
    .health-bar {
        height: 25px;
    }
    
    .health-label {
        font-size: 0.7rem;
    }
    
    .battle-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .battle-btn {
        width: 100%;
        max-width: 300px;
        margin: 5px 0;
        padding: 15px 20px;
    }
    
    /* Game Map Mobile */
    .map-container {
        padding: 20px;
        min-height: 300px;
    }
    
    .enemy {
        width: 80%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1.2;
    }
    
    /* Avatar Mobile */
    .avatar {
        width: 90%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1/1;
    }
    
    .avatar-container {
        padding: 20px;
    }
}

/* Mobile Portrait (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    /* Header Ultra Mobile */
    .header {
        padding: 15px 10px;
        border-radius: 15px;
        margin-bottom: 20px;
    }
    
    .header h1 {
        font-size: 1.6rem;
        padding-right: 50px;
    }
    
    /* User Welcome Text */
    .header p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-break: break-word;
    }
    
    /* Level Up Button Ultra Mobile */
    .level-up-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        top: 10px;
        right: 10px;
    }
    
    /* Navigation Ultra Mobile */
    .nav-tabs {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
        padding: 12px 15px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    /* Tab Content Ultra Mobile */
    .tab-content {
        padding: 15px 10px;
        min-height: 350px;
        border-radius: 12px;
    }
    
    /* Power Level Ultra Mobile */
    .power-level {
        font-size: 1.5rem;
        margin: 10px 0;
    }
    
    /* Stats Panel Ultra Mobile */
    .stats-panel {
        padding: 15px;
        border-radius: 12px;
    }
    
    .stat-name {
        font-size: 0.85rem;
    }
    
    .stat-progress {
        height: 18px;
    }
    
    /* Course Grid Ultra Mobile */
    .course-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .course-video {
        height: 100px;
        font-size: 1.8rem;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    
    /* Challenge Cards Ultra Mobile */
    .challenge-card {
        padding: 15px;
        border-radius: 12px;
    }
    
    .challenge-card h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .challenge-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .challenge-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 20px;
    }
    
    /* Battle System Ultra Mobile */
    #battleCanvas {
        width: 95%;
        max-width: 320px;
        border-width: 2px;
        border-radius: 12px;
    }
    
    .battle-result {
        margin: 15px 0;
        padding: 12px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Game Map Ultra Mobile */
    .map-container {
        padding: 15px;
        min-height: 250px;
        border-radius: 15px;
    }
    
    .enemy {
        width: 85%;
        max-width: 250px;
    }
    
    /* Leaderboard Ultra Mobile */
    .leaderboard-table {
        font-size: 0.75rem;
    }
    
    .leaderboard-table th,
    .leaderboard-table td {
        padding: 8px 6px;
        min-width: 70px;
    }
    
    /* Avatar Ultra Mobile */
    .avatar {
        width: 95%;
        max-width: 250px;
        border-width: 2px;
        border-radius: 15px;
    }
    
    .avatar-container {
        padding: 15px;
    }
}

/* Landscape Mobile (Small Height) */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        padding: 10px 15px;
        margin-bottom: 15px;
    }
    
    .header h1 {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    
    .nav-tabs {
        margin-bottom: 15px;
    }
    
    .tab-content {
        min-height: 250px;
        padding: 15px;
    }
    
    .map-container {
        min-height: 200px;
        padding: 15px;
    }
    
    #battleCanvas {
        max-width: 250px;
        max-height: 250px;
    }
    
    .battle-controls {
        margin-top: 10px;
    }
    
    .battle-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.8); }
    100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(138, 43, 226, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 43, 226, 0.7);
}

/* Better Focus States for Accessibility */
button:focus,
input:focus,
.tab-btn:focus,
.battle-btn:focus,
.challenge-btn:focus {
    outline: 2px solid #da70d6;
    outline-offset: 2px;
}

/* Improve touch feedback */
@media (hover: none) and (pointer: coarse) {
    .tab-btn:active,
    .battle-btn:active,
    .challenge-btn:active,
    .course-card:active,
    .challenge-card:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
}
/* ========== DESKTOP OVERRIDES ========== */
@media (min-width: 769px) {
    
    /* Header - Puvodní desktop layout */
    .header {
        padding: 20px !important;
        text-align: center !important;
        display: block !important;
        position: relative !important;
        gap: 0 !important;
    }
    
    /* Logo - Uprostred nahore */
    .header h1 {
        font-size: 2.5rem !important;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
        padding: 0 !important;
        order: auto !important;
    }
    
    /* Subtitle - Pod logem */
    .header p {
        font-size: 1rem !important;
        margin-bottom: 0 !important;
        order: auto !important;
        line-height: normal !important;
    }
    
    /* UKÁZAT mobilní wrappery na desktopu pro welcome text */
    .mobile-buttons-row {
        display: block !important; /* ZMENA - ukázat */
        position: static !important;
        width: auto !important;
        margin: 0 !important;
        gap: 0 !important;
    }
    
    .welcome-logout-group {
        display: block !important; /* ZMENA - ukázat */
        position: static !important;
        flex: none !important;
    }
    
    /* Welcome back - Vlevo dole */
    .header #userWelcome {
        position: absolute !important;
        bottom: 20px !important;
        left: 20px !important;
        font-size: 1rem !important;
        margin: 0 !important;
        text-align: left !important;
        order: auto !important;
        display: block !important;
    }
    
    /* Logout - Vpravo dole */
    .header #logoutBtn {
        position: absolute !important;
        bottom: 20px !important;
        right: 20px !important;
        top: auto !important;
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        margin: 0 !important;
        background: linear-gradient(45deg, #8a2be2, #da70d6) !important;
        border: none !important;
        border-radius: 10px !important;
        color: white !important;
        min-height: auto !important;
        z-index: auto !important;
        order: auto !important;
        display: inline-block !important;
    }
    
    /* Level Up Button - Vpravo nahore */
    .level-up-btn {
        position: absolute !important;
        top: 15px !important;
        right: 20px !important;
        left: auto !important;
        bottom: auto !important;
        padding: 12px 20px !important;
        font-size: 1rem !important;
        border-radius: 25px !important;
        min-height: auto !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        order: auto !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
    }
    
    /* Daily Bonus - Vlevo nahore */
    .daily-bonus-indicator {
        position: absolute !important;
        top: 15px !important;
        left: 20px !important;
        right: auto !important;
        bottom: auto !important;
        font-size: 0.85rem !important;
        padding: 8px 15px !important;
        border-radius: 25px !important;
        min-height: 36px !important;
        margin: 0 !important;
        order: auto !important;
        flex-shrink: auto !important;
        display: flex !important;
    }
}
