@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'VT323', monospace;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #1a1a2e;
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #151525;
}

::-webkit-scrollbar-thumb {
    background: #4a4a6a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f5a623;
}

::-webkit-scrollbar-corner {
    background: #151525;
}

#sanctuary-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    /* Rich grass gradient - from dark earth at bottom to bright grass */
    background: linear-gradient(
        to bottom,
        #4a7c2f 0%,
        #5a9e38 30%,
        #6db84a 60%,
        #4e8c2a 100%
    );
}

#sanctuary-container.landing-mode {
    right: 50%;
}

canvas {
    display: block;
    image-rendering: pixelated;
    /* width/height handled by engine.js applyScale() */
}

/* PC (Landscape / Desktop) */
#canvas-overlay {
    display: none !important;
}

#names-toggle-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



/* On PC, hide the canvas overlay when NOT in landing mode */
#sanctuary-container:not(.landing-mode) #names-toggle-label {
    display: none !important;
}

/* Panel lateral derecho */
#sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 260px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    border-left: 3px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    padding: 20px 15px 40px; /* Safe padding at bottom */
    gap: 12px;
    z-index: 20;
    overflow-y: auto;
}

#sidebar h2 {
    font-size: 1.8rem;
    color: #ffe87a;
    text-shadow: 2px 2px 0 #7a4a00;
    text-align: center;
    border-bottom: 2px solid rgba(255,232,122,0.2);
    padding-bottom: 10px;
    flex-shrink: 0;
}

#sidebar .pen-name {
    font-size: 1.3rem;
    color: #c8a96e;
    text-align: center;
}

#sidebar .sidebar-section {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px 12px;
    flex-shrink: 0;
}

#chickens-list-section {
    flex-shrink: 1 !important; /* Allow this to shrink so list can scroll */
}

#sidebar .sidebar-section h3 {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#chickens-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
    height: 0;
    overflow-y: auto;
    padding-right: 4px;
}

#chickens-list::-webkit-scrollbar {
    width: 6px;
}
#chickens-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.chicken-list-item {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: background 0.1s;
}

.chicken-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chicken-list-avatar {
    width: 40px;
    height: 40px;
    background: #4a7c2f;
    border-radius: 4px;
    margin-right: 10px;
    border: 2px solid #2e4d1d;
}

.chicken-list-info {
    display: flex;
    flex-direction: column;
}

.chicken-list-info strong {
    font-size: 1.1rem;
    color: #ffe87a;
    line-height: 1.1;
}

.chicken-list-info span {
    font-size: 0.9rem;
    color: #aaa;
}


/* UI Layer */
#ui-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

/* Header - polished wood sign style */
header {
    text-align: center;
    pointer-events: none;
}

header h1 {
    font-size: 3.5rem;
    color: #ffe87a;
    letter-spacing: 3px;
    text-shadow:
        3px 3px 0 #7a4a00,
        -1px -1px 0 #7a4a00,
        1px -1px 0 #7a4a00,
        -1px 1px 0 #7a4a00,
        0 0 20px rgba(255, 220, 80, 0.4);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}

header p {
    display: inline-block;
    font-size: 1.4rem;
    color: #fff8dc;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 4px 18px;
    margin-top: 6px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px #000;
}

/* Buttons and controls */
#owner-controls, .global-controls {
    pointer-events: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.global-controls {
    align-self: flex-end;
}

#owner-controls {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Premium pixel-art buttons */
.btn {
    font-size: 1.2rem;
    padding: 10px 18px;
    border: none;
    color: white;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: transform 0.1s ease, filter 0.1s ease, box-shadow 0.1s ease;
    font-family: 'VT323', monospace;
    letter-spacing: 1px;
}

.btn:active {
    transform: translateY(4px);
}

.btn:hover {
    filter: brightness(1.15);
}

.btn.primary {
    background: linear-gradient(135deg, #56c96e, #3ea050);
    box-shadow: 0 4px 0 #256635, 0 6px 12px rgba(0,0,0,0.3);
}
.btn.primary:active { box-shadow: 0 0 0 #256635, 0 2px 4px rgba(0,0,0,0.3); }

.btn.secondary {
    background: linear-gradient(135deg, #4ba3dd, #2878b5);
    box-shadow: 0 4px 0 #1a5080, 0 6px 12px rgba(0,0,0,0.3);
}
.btn.secondary:active { box-shadow: 0 0 0 #1a5080, 0 2px 4px rgba(0,0,0,0.3); }

.btn.action {
    background: linear-gradient(135deg, #f5a623, #d4831a);
    box-shadow: 0 4px 0 #8a5200, 0 6px 12px rgba(0,0,0,0.3);
    color: #fff;
}
.btn.action:active { box-shadow: 0 0 0 #8a5200, 0 2px 4px rgba(0,0,0,0.3); }

.btn.steam {
    background: linear-gradient(135deg, #2a475e, #1b2838);
    box-shadow: 0 4px 0 #0a1520, 0 6px 12px rgba(0,0,0,0.4);
    color: #66c0f4;
    border: 1px solid #66c0f4;
}
.btn.steam:active { box-shadow: 0 0 0 #0a1520, 0 2px 4px rgba(0,0,0,0.4); }

.btn.full-width { width: 100%; }

.hidden {
    display: none !important;
}

/* Modals */
.modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(3px);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.modal-content {
    background: linear-gradient(160deg, #fffdf5, #f0ead8);
    color: #2d2d2d;
    padding: 30px;
    border: 4px solid #c8a96e;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.5),
        inset 0 1px 0 rgba(255,255,255,0.9);
    text-align: center;
}

/* Epitaph / chicken info modal */
#chicken-modal .modal-content {
    border-color: #8b6914;
    background: linear-gradient(160deg, #2d2417, #1a1408);
    color: #f5e6c0;
}

/* Visual Breed Selector */
.breed-selector {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #c8a96e;
    background: linear-gradient(135deg, #3a5a28, #4a7a36);
    border-radius: 8px;
    scrollbar-width: thin;
    scrollbar-color: #c8a96e transparent;
}

.breed-option {
    min-width: 60px;
    height: 60px;
    border: 3px solid rgba(255,255,255,0.2);
    cursor: pointer;
    border-radius: 6px;
    background-color: #5a8c3a;
    image-rendering: pixelated;
    transition: transform 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
    flex-shrink: 0;
}

.breed-option:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.breed-option.selected {
    border-color: #ffe87a;
    box-shadow: 0 0 0 2px #f5a623, 0 4px 12px rgba(255,200,0,0.4);
    transform: scale(1.1);
}

.close-btn {
    position: absolute;
    top: 8px; right: 14px;
    font-size: 2.2rem;
    font-weight: bold;
    cursor: pointer;
    color: #888;
    line-height: 1;
    transition: color 0.1s, transform 0.1s;
}

.close-btn:hover {
    color: #e74c3c;
    transform: scale(1.2);
}

#chicken-portrait {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: radial-gradient(circle, #5a9e38, #3a6e22);
    border: 4px solid #c8a96e;
    border-radius: 50%;
    image-rendering: pixelated;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5), inset 0 2px 4px rgba(255,255,255,0.1);
}

#chicken-name {
    font-size: 3rem;
    margin-bottom: 4px;
    color: #ffe87a;
    text-shadow: 2px 2px 0 #7a4a00;
}

.dates {
    font-size: 1.3rem;
    color: #c8a96e;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.epitaph-container {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-left: 4px solid #c8a96e;
    border-radius: 4px;
    font-style: italic;
    font-size: 1.4rem;
    color: #f5e6c0;
    line-height: 1.5;
}

/* Forms */
.form-modal h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #5a3a00;
    text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

.form-group {
    margin-bottom: 14px;
    text-align: left;
}

.form-row {
    display: flex;
    gap: 15px;
}

.half { flex: 1; }

label {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
    color: #5a3a00;
    letter-spacing: 0.5px;
}

input, select, textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 1.2rem;
    font-family: 'VT323', monospace;
    border: 2px solid #c8a96e;
    border-radius: 6px;
    background: #fffdf5;
    color: #2d2d2d;
    transition: border-color 0.15s, box-shadow 0.15s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #5a9e38;
    box-shadow: 0 0 0 3px rgba(90,158,56,0.25);
}

/* Custom Range Slider */
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    border: none;
    padding: 10px 0;
    box-shadow: none;
}
input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: #e6d3a8;
    border-radius: 4px;
    border: 1px solid #c8a96e;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #5a9e38;
    cursor: pointer;
    margin-top: -7px;
    border: 2px solid #2d2d2d;
}
input[type="range"]:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/* Responsive Landscape para Móviles */
@media (orientation: landscape) and (max-height: 600px) {
    .modal-content.form-modal {
        max-width: 700px;
        width: 95%;
        padding: 15px 20px;
    }
    
    .form-row {
        flex-wrap: wrap;
    }

    .form-group {
        margin-bottom: 5px;
    }
    
    .breed-selector {
        margin-bottom: 5px;
        padding: 5px;
    }
    
    .breed-option {
        min-width: 48px;
        height: 48px;
    }
    
    /* Compact Sidebar for Landscape */
    #sidebar {
        padding: 10px 10px;
        gap: 6px;
    }
    #sidebar h2 {
        font-size: 1.3rem;
        padding-bottom: 5px;
    }
    #sidebar .pen-name {
        font-size: 1.1rem;
    }
    #sidebar .btn {
        padding: 6px 10px;
        font-size: 1.1rem;
    }
    #sidebar .sidebar-section {
        padding: 6px 8px;
    }
    .chicken-list-item {
        padding: 4px;
    }
    .chicken-list-avatar {
        width: 32px;
        height: 32px;
    }
}

/* Tooltip for chicken list */
#chicken-tooltip {
    position: fixed;
    right: 280px;
    width: 260px;
    background-color: #dfcd9f;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZGZjZDlmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDBMNCA0Wk00IDBMMCA0WiIgc3Ryb2tlPSIjZDJjMDUzIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiPjwvcGF0aD4KPC9zdmc+');
    border: 4px solid #5a3a00;
    border-radius: 8px;
    padding: 12px;
    color: #5a3a00;
    z-index: 100;
    pointer-events: none;
    box-shadow: -4px 4px 15px rgba(0,0,0,0.5);
}

#chicken-tooltip h4 {
    font-size: 1.8rem;
    margin-bottom: 4px;
    line-height: 1;
}

#chicken-tooltip .dates {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #8a5a00;
}

#chicken-tooltip .epitaph {
    font-size: 1.2rem;
    font-style: italic;
    background: rgba(0,0,0,0.05);
    padding: 8px;
    border-radius: 4px;
    border-left: 3px solid #8a5a00;
}

/* --- LANDING PAGE --- */
#landing-page {
    position: absolute;
    top: 0; left: 50%; right: 0; bottom: 0;
    z-index: 100;
    background-color: #1a1a2e; /* Fondo oscuro sólido en la derecha */
    overflow-y: auto;
    padding: 0 20px; /* Reducido para menos aire */
    color: white;
}

.landing-content {
    width: 100%;
    max-width: 850px;
    margin: 20px auto 0; /* Centrado clásico con menos margen vertical, y nada abajo */
}

.landing-header {
    text-align: center;
    margin-bottom: 20px;
}

.landing-header h1 {
    font-size: 4rem;
    color: #ffeb3b;
    text-shadow: 0 4px 0 #b3a52d;
    margin-bottom: 10px;
}

.landing-header p {
    font-size: 1.5rem;
    color: #aaa;
}

.landing-section {
    max-width: 800px;
    margin: 0 auto 25px auto;
}

.landing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
    color: #fff;
    border-bottom: none;
    padding-bottom: 0;
}

.about-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #ddd;
}

.huge-btn {
    font-size: 1.5rem;
    padding: 10px 25px;
}

.mock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.mock-card {
    background-color: #2a2a40;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.2s;
    min-width: 0;
}

.mock-card-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.mock-card:hover {
    border-color: #4a7c2f;
    transform: translateY(-2px);
}

.mock-icon {
    width: 48px;
    height: 48px;
    background-image: url('../assets/chicken_one.png');
    background-repeat: no-repeat;
    background-size: 384px 432px;
    image-rendering: pixelated;
    border-radius: 4px;
    background-color: #1a1a2e;
}

.mock-info h4 {
    font-size: 1.4rem;
    color: #ffeb3b;
    margin-bottom: 5px;
}

.mock-info p {
    color: #aaa;
    font-size: 1.1rem;
}

/* Discovery UI */
.discovery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #2a2a40;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.discovery-header h2 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.search-container input {
    background: #1e1e30;
    border: 2px solid #3a3a5a;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 1.2rem;
    width: 250px;
    transition: all 0.2s;
}

.search-container input:focus {
    border-color: #ffeb3b;
    box-shadow: 0 0 8px rgba(255, 235, 59, 0.3);
    outline: none;
}

.discovery-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Canvas Overlay Hover Effects */
#overlay-pen-name {
    cursor: help;
    pointer-events: auto;
}
#overlay-pen-desc {
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s, max-height 0.3s ease, margin-bottom 0.3s ease;
    visibility: hidden;
    max-height: 0;
    margin-bottom: 0 !important;
}
#overlay-text-wrapper:hover #overlay-pen-desc {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    margin-bottom: 5px !important;
    transition: opacity 0.3s ease 0.1s, max-height 0.3s ease 0.1s, margin-bottom 0.3s ease 0.1s, visibility 0s ease 0.1s;
}

.tab-btn {
    background: #2a2a40;
    color: #aaa;
    border: 2px solid #3a3a5a;
    padding: 8px 20px;
    font-size: 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: 'VT323', monospace;
    transition: all 0.2s;
}

.tab-btn:hover {
    background: #3a3a5a;
    color: white;
}

.tab-btn.active {
    background: #4a7c2f;
    border-color: #6db84a;
    color: white;
    box-shadow: 0 4px 0 #2e4d1d;
    transform: translateY(-2px);
}

.visits-badge {
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #ffb74d;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 1.1rem;
    white-space: nowrap;
}

.modal-split {
    width: 95%;
    max-width: 780px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 25px;
}

.preview-panel {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #5a9e38, #3a6e22);
    border: 4px solid #c8a96e;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 4px 10px rgba(0,0,0,0.3);
}

.preview-panel canvas {
    image-rendering: pixelated;
    display: block;
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
}

.preview-label {
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    text-shadow: 1px 1px 0 #000;
}

.form-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
    min-width: 0;
}

@media (max-width: 600px) {
    .modal-split {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 15px;
        max-width: 400px;
    }
    
    .preview-panel {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
    }

    .preview-panel canvas {
        max-height: 150px;
    }
    
    .form-panel {
        width: 100%;
    }
}

/* Responsive Landing Page - Mobile Portrait Stacking */
@media (max-width: 850px) and (orientation: portrait) {
    #landing-page {
        left: 0;
        top: 50%;
        border-left: none;
        border-top: none;
        padding: 10px 10px;
    }

    #canvas-overlay {
        display: block !important;
        position: absolute;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 10px 5px;
        background: linear-gradient(to top, rgba(0,0,0,0.9), transparent) !important;
        text-align: center;
        pointer-events: none;
        z-index: 9999 !important;
    }
    
    #sanctuary-container.landing-mode #canvas-overlay {
        display: none !important;
    }
    
    #names-toggle-label {
        bottom: 10px;
        right: 10px;
    }

    #sidebar-header {
        display: none !important;
    }

    /* Landing Page Compaction */
    .landing-content { margin: 10px auto 0; }
    .landing-header { margin-bottom: 15px; }
    .landing-header h1 { font-size: 2.2rem; margin-bottom: 5px; }
    .landing-header p { font-size: 1.1rem; padding: 5px; }
    
    .landing-section { margin-bottom: 25px; }
    .landing-section h2 { font-size: 1.8rem; margin-bottom: 10px; padding-bottom: 5px; }
    
    footer { position: relative !important; margin-top: 20px; }
    .mock-grid, .chickens-grid { grid-template-columns: 1fr 1fr; }
    
    .mock-card { padding: 10px; }
    .mock-card-content h4 { font-size: 1.1rem !important; }
    .mock-card-content p { font-size: 0.8rem !important; }
    
    .about-section p { font-size: 1rem; line-height: 1.3; margin-bottom: 10px; }
    .about-section div { margin-top: 15px !important; }
    
    .huge-btn { font-size: 1.3rem; padding: 10px 20px; }
    
    .discovery-header { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 10px; padding-bottom: 5px; }
    .search-container input { width: 100%; font-size: 1rem; padding: 6px 12px; }
    
    .discovery-tabs { margin-bottom: 15px; }
    .tab-btn { padding: 6px 15px; font-size: 1rem; }
    
    #sanctuary-container.landing-mode {
        right: 0;
        bottom: 50%;
    }

    /* Sidebar compaction */
    #sidebar {
        padding: 10px;
        gap: 8px;
    }
    #sidebar h2 { font-size: 1.4rem; padding-bottom: 5px; border-bottom: 1px solid rgba(255,232,122,0.2); }
    #sidebar .pen-name { font-size: 1.1rem; }
    #sidebar .sidebar-section { padding: 6px 8px; flex-shrink: 0; }
    #sidebar .sidebar-section h3 { font-size: 0.9rem; margin-bottom: 4px; }
    
    .chicken-list-info strong { font-size: 1rem; }
    .chicken-list-info span { font-size: 0.8rem; }
    .chicken-list-avatar { width: 32px; height: 32px; }
    
    .btn { padding: 8px; font-size: 1rem; }
}
