/* War Room Row Layout CSS */

/* Update main layout for row-based rooms - remove fixed height */
.war-room-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    min-height: calc(100vh - 200px);
}

/* Room Rows Layout - Changed to 4x3 grid - remove overflow */
.rooms-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-auto-rows: auto !important;
    gap: 0.75rem;
    padding-right: 0.25rem;
    align-content: start;
}

/* Ensure rooms display in 3 columns with stronger specificity */
.war-room-layout .rooms-grid {
    grid-template-columns: repeat(3, 1fr) !important;
}

.room-row {
    /* Removed background and borders for unified grid layout */
    display: contents; /* Makes the row wrapper invisible, allowing rooms to participate in parent grid */
}

.row-header {
    /* Hide tier headers for unified grid layout */
    display: none;
}

/* Header animations removed for unified grid */

/* Room tier specific colors */
.row-header.exalted { 
    color: #D2691E; 
    background: linear-gradient(135deg, rgba(210, 105, 30, 0.15), rgba(255, 140, 0, 0.1));
    border: 2px solid rgba(210, 105, 30, 0.4);
}

.row-header.eminent { 
    color: #4CAF50; 
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.1));
    border: 2px solid rgba(76, 175, 80, 0.4);
}

.row-header.famed { 
    color: #2196F3; 
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15), rgba(33, 150, 243, 0.1));
    border: 2px solid rgba(33, 150, 243, 0.4);
}

.row-header.proud { 
    color: #FFC107; 
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.1));
    border: 2px solid rgba(255, 193, 7, 0.4);
}

.row-rooms {
    /* Changed to contents to allow rooms to participate in parent grid */
    display: contents;
}

.room-container {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 6px;
    padding: 0.75rem;
    transition: all 0.3s ease;
    /* Touch improvements */
    touch-action: manipulation;
}

.room-container:hover {
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.2);
}

/* Touch-specific room optimizations */
@media (hover: none) and (pointer: coarse) {
    .war-room-layout {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .room-container {
        padding: 1rem;
        border-radius: 8px;
        border: 2px solid rgba(196, 30, 58, 0.4);
        min-height: 200px;
        touch-action: manipulation;
    }
    
    .room-container:hover {
        /* Remove hover effects on touch devices */
        border-color: rgba(196, 30, 58, 0.3);
        box-shadow: none;
    }
    
    .room-header {
        padding: 0.75rem;
        margin-bottom: 1rem;
        border-radius: 6px;
        min-height: 48px;
        align-items: center;
    }
    
    .room-header h4 {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .room-stats {
        gap: 0.4rem;
    }
    
    .room-count {
        font-size: 0.9rem;
    }
    
    .room-resonance {
        font-size: 0.9rem;
    }
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.4rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.room-header h4 {
    font-family: 'Exocet', 'ExocetBlizzard', 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--diablo-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

.room-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.room-count {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: var(--diablo-amber);
    font-weight: 600;
}

.room-resonance {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #87CEEB;
    font-weight: 600;
    text-shadow: 1px 1px 2px var(--deep-shadow);
}

/* War Plan Controls */
.war-plan-controls {
    margin-top: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    border: 1px solid rgba(196, 30, 58, 0.3);
}

.war-plan-input {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.war-plan-input input, .war-date-picker {
    flex: 1;
    min-width: 180px;
    padding: 0.5rem;
    background: rgba(26, 15, 10, 0.8);
    border: 1px solid rgba(196, 30, 58, 0.4);
    border-radius: 4px;
    color: var(--diablo-bone);
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
}

.war-plan-input input:focus, .war-date-picker:focus {
    outline: none;
    border-color: var(--diablo-gold);
    box-shadow: 0 0 8px var(--gold-glow);
}

.war-date-picker {
    color-scheme: dark;
}

.war-date-picker::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.btn-save-war, .btn-new-war, .btn-history, .btn-reporting, .btn-export-csv {
    padding: 0.5rem 0.8rem;
    background: linear-gradient(135deg, var(--diablo-red), var(--diablo-ember));
    border: 1px solid var(--diablo-gold);
    border-radius: 4px;
    color: var(--diablo-bone);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-save-war:hover, .btn-new-war:hover, .btn-history:hover, .btn-reporting:hover, .btn-export-csv:hover {
    background: linear-gradient(135deg, var(--diablo-ember), var(--diablo-red));
    box-shadow: 0 0 12px var(--red-glow);
    transform: translateY(-1px);
}

.btn-save-war:active, .btn-new-war:active, .btn-history:active, .btn-reporting:active, .btn-export-csv:active {
    transform: translateY(0);
    box-shadow: 0 0 6px var(--red-glow);
    transition: all 0.15s ease-out;
}

.current-war {
    font-family: 'Cinzel', serif;
    color: var(--diablo-gold);
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* History Page Styles */
.history-container {
    padding: 2rem;
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.war-plan-card {
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.8), rgba(45, 24, 16, 0.6));
    border: 2px solid rgba(196, 30, 58, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--deep-shadow);
}

.war-plan-card:hover {
    border-color: var(--diablo-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.war-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(196, 30, 58, 0.3);
    padding-bottom: 0.5rem;
}

.war-header h3 {
    font-family: 'Exocet', 'ExocetBlizzard', 'Creepster', cursive;
    color: var(--diablo-gold);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.war-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-load {
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, var(--diablo-gold), var(--diablo-amber));
    color: var(--diablo-dark);
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-load:hover {
    background: linear-gradient(135deg, var(--diablo-amber), var(--diablo-gold));
    box-shadow: 0 0 10px var(--gold-glow);
}

.btn-load:active {
    transform: translateY(0);
    box-shadow: 0 0 5px var(--gold-glow);
    transition: all 0.15s ease-out;
}

.btn-delete {
    padding: 0.4rem 0.6rem;
    background: linear-gradient(135deg, var(--diablo-red), var(--diablo-ember));
    color: var(--diablo-bone);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: linear-gradient(135deg, var(--diablo-ember), var(--diablo-red));
    box-shadow: 0 0 10px var(--red-glow);
}

.btn-delete:active {
    transform: translateY(0);
    box-shadow: 0 0 5px var(--red-glow);
    transition: all 0.15s ease-out;
}

.war-meta {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    color: #A0A0A0;
    margin-bottom: 1rem;
}

.war-summary {
    font-family: 'Cinzel', serif;
}

.summary-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.summary-stats .stat {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--diablo-gold);
    font-size: 0.8rem;
}

.room-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
}

.room-mini {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.3rem;
    border-radius: 3px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    text-align: center;
}

.room-name {
    font-size: 0.7rem;
    color: #A0A0A0;
    margin-bottom: 0.2rem;
}

.room-count {
    font-size: 0.8rem;
    color: var(--diablo-gold);
    font-weight: 600;
}

.empty-history {
    text-align: center;
    padding: 4rem 2rem;
    color: #A0A0A0;
}

.empty-history h3 {
    font-family: 'Exocet', 'ExocetBlizzard', 'Creepster', cursive;
    color: var(--diablo-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.header-controls {
    margin-top: 1rem;
    text-align: center;
}

.btn-back {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--diablo-red), var(--diablo-ember));
    color: var(--diablo-bone);
    border: 2px solid var(--diablo-gold);
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-back:hover {
    background: linear-gradient(135deg, var(--diablo-ember), var(--diablo-red));
    box-shadow: 0 0 15px var(--red-glow);
    transform: translateY(-2px);
}

.btn-back:active {
    transform: translateY(0);
    box-shadow: 0 0 8px var(--red-glow);
    transition: all 0.15s ease-out;
}

/* Form action buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.btn-load, .btn-clear {
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--diablo-gold);
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-load {
    background: linear-gradient(135deg, var(--diablo-gold), var(--diablo-amber));
    color: var(--diablo-dark);
}

.btn-clear {
    background: linear-gradient(135deg, var(--diablo-red), var(--diablo-ember));
    color: var(--diablo-bone);
}

.btn-load:hover, .btn-clear:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.btn-load:active, .btn-clear:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    transition: all 0.15s ease-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .war-room-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .row-rooms {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .room-row {
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    .war-room-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
    }
    
    .sidebar-left {
        max-height: 300px;
    }
    
    .row-header {
        font-size: 1.4rem;
    }
    
    .war-plan-input {
        flex-direction: column;
    }
    
    .war-plan-input input {
        min-width: auto;
    }
    
    .history-grid {
        grid-template-columns: 1fr;
    }
}

/* Player Card Tooltip */
.player-tooltip {
    position: absolute;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 15, 10, 0.95), rgba(45, 24, 16, 0.95));
    border: 2px solid var(--diablo-gold);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    min-width: 280px;
    max-width: 320px;
}

.player-tooltip.show {
    opacity: 1;
    visibility: visible;
}

.player-tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.player-tooltip-name {
    font-family: 'Exocet', 'ExocetBlizzard', 'Cinzel', serif;
    font-size: 1.1rem;
    color: var(--diablo-gold);
    font-weight: bold;
    text-shadow: 1px 1px 2px var(--deep-shadow);
}

.player-tooltip-class {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--diablo-bone);
    font-style: italic;
}

.player-tooltip-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.player-tooltip-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--diablo-bone);
    font-family: 'Cinzel', serif;
}

.player-tooltip-stat-label {
    color: #A0A0A0;
}

.player-tooltip-stat-value {
    color: var(--diablo-bone);
    font-weight: 500;
}

.player-tooltip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.player-tooltip-power {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    color: var(--diablo-gold);
    font-weight: bold;
}

.player-tooltip-status {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.player-tooltip-status.active {
    color: var(--set-green);
}

.player-tooltip-status.inactive {
    color: var(--diablo-red);
}

.player-tooltip-savior {
    font-size: 0.8rem;
    color: var(--diablo-amber);
    font-family: 'Cinzel', serif;
}

/* Tooltip arrow */
.player-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--diablo-gold);
}

.player-tooltip::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(26, 15, 10, 0.95);
}

/* Holding Zone Styles */
.holding-zone-section {
    width: 100%;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(160, 82, 45, 0.1));
    border: 2px solid rgba(139, 69, 19, 0.4);
    border-radius: 8px;
    padding: 1rem;
}

.zone-header {
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin: 0 0 0.75rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.holding-zone-container {
    position: relative;
}

.holding-zone {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.375rem;
    margin-bottom: 0.5rem;
    min-height: 80px;
    background: rgba(139, 69, 19, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.2);
    border-radius: 6px;
    padding: 0.5rem;
}

.holding-player {
    width: 100%;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    cursor: move;
    transition: all 0.2s ease;
    border-radius: 4px;
    background: rgba(139, 69, 19, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.5);
}

.holding-player:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.4);
}

.holding-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #F5F5DC;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 0.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.holding-class {
    font-size: 0.6rem;
    color: #D4AF37;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.holding-stats {
    text-align: center;
    margin-top: 0.5rem;
}

.holding-count {
    background: rgba(139, 69, 19, 0.8);
    color: #F5F5DC;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(139, 69, 19, 0.9);
}

/* Drag and drop states for holding zone */
.holding-zone.sortable-chosen {
    opacity: 0.8;
}

.holding-zone.sortable-ghost {
    opacity: 0.4;
}

.holding-slot.sortable-chosen {
    transform: rotate(5deg);
    z-index: 1000;
}

/* Class-specific colors for holding zone players */
.holding-player.barbarian { background: rgba(255, 69, 0, 0.3); }
.holding-player.crusader { background: rgba(255, 215, 0, 0.15); }
.holding-player.demon-hunter { background: rgba(75, 0, 130, 0.3); }
.holding-player.monk { background: rgba(255, 140, 0, 0.25); }
.holding-player.necromancer { background: rgba(0, 100, 0, 0.3); }
.holding-player.wizard { background: rgba(0, 0, 139, 0.3); }
.holding-player.tempest { background: rgba(135, 206, 235, 0.3); }
.holding-player.blood-knight { background: rgba(139, 0, 0, 0.4); }
.holding-player.druid { background: rgba(34, 139, 34, 0.3); }

/* Resonance Display Styles */
.room-resonance {
    background: rgba(212, 175, 55, 0.8);
    color: #1A0F0A;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-shadow: none;
    border: 1px solid rgba(212, 175, 55, 0.9);
}

.holding-resonance-total {
    background: rgba(139, 69, 19, 0.8);
    color: #F5F5DC;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-left: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(139, 69, 19, 0.9);
}

.assigned-resonance {
    font-size: 0.6rem;
    color: #D4AF37;
    text-align: center;
    font-weight: bold;
    margin-top: 0.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.holding-resonance {
    font-size: 0.55rem;
    color: #D4AF37;
    text-align: center;
    font-weight: bold;
    margin-top: 0.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Public View - Remove class colors and resize names to fit boxes */
.public-view {
    background: rgba(26, 15, 10, 0.7) !important;
    border: 1px solid rgba(196, 30, 58, 0.4) !important;
}

.public-view .assigned-name {
    font-size: clamp(0.7rem, 2.5vw, 1.1rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    padding: 0.1rem !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.public-view .assigned-class {
    display: none !important;
}

.public-view .assigned-resonance {
    display: none !important;
}

.public-view .holding-name {
    font-size: clamp(0.6rem, 2vw, 0.95rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.1 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    padding: 0.1rem !important;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.public-view .holding-class {
    display: none !important;
}

.public-view .holding-resonance {
    display: none !important;
}

/* Class-specific colors for assigned players in war rooms */
.assigned-player.barbarian { background: rgba(255, 69, 0, 0.2) !important; border: 1px solid rgba(255, 69, 0, 0.4) !important; }
.assigned-player.crusader { background: rgba(255, 215, 0, 0.1) !important; border: 1px solid rgba(255, 215, 0, 0.3) !important; }
.assigned-player.demon-hunter { background: rgba(75, 0, 130, 0.2) !important; border: 1px solid rgba(75, 0, 130, 0.4) !important; }
.assigned-player.monk { background: rgba(255, 140, 0, 0.15) !important; border: 1px solid rgba(255, 140, 0, 0.3) !important; }
.assigned-player.necromancer { background: rgba(0, 100, 0, 0.2) !important; border: 1px solid rgba(0, 100, 0, 0.4) !important; }
.assigned-player.wizard { background: rgba(0, 0, 139, 0.2) !important; border: 1px solid rgba(0, 0, 139, 0.4) !important; }
.assigned-player.tempest { background: rgba(135, 206, 235, 0.2) !important; border: 1px solid rgba(135, 206, 235, 0.4) !important; }
.assigned-player.blood-knight { background: rgba(139, 0, 0, 0.25) !important; border: 1px solid rgba(220, 20, 60, 0.5) !important; }
.assigned-player.druid { background: rgba(34, 139, 34, 0.2) !important; border: 1px solid rgba(34, 139, 34, 0.4) !important; }

/* Public view specific styling - smaller font sizes to fit cards */
.public-layout .assigned-name {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    line-height: 1.1 !important;
}

.public-layout .player-name {
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}