* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    overflow-x: hidden;
}

/* User Menu Styles */
.user-menu {
    position: fixed;
    top: 0;
    right: 0;
    padding: 20px;
    z-index: 1000;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-name {
    font-weight: bold;
    color: #FFD700;
}

.user-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.logout-btn, .login-toggle-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.login-toggle-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.logout-btn:hover, .login-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Login Form Styles */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
}

.login-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-form h1 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 2.2em;
}

.welcome-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1em;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.pin-input {
    font-size: 20px !important;
    text-align: center;
    letter-spacing: 2px;
}

.login-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.error-message {
    color: #ff6b6b;
    margin-top: 15px;
    font-weight: bold;
}

.user-suggestions {
    margin-top: 20px;
    text-align: center;
}

.user-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.user-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Action System Styles */
.action-buttons {
    margin-top: 20px;
}

.main-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.action-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

.action-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.sub-actions {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideDown 0.3s ease;
}

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

.sub-actions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: bold;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 8px;
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sub-panel form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.sub-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sub-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.sub-btn.green {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.sub-btn.blue {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.sub-btn.red {
    background: linear-gradient(135deg, #f44336, #d32f2f);
}

.sub-btn.purple {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
}

.sub-btn.orange {
    background: linear-gradient(135deg, #FF9800, #F57C00);
}

.sub-btn.pink {
    background: linear-gradient(135deg, #E91E63, #C2185B);
}

.sub-btn.yellow {
    background: linear-gradient(135deg, #FFC107, #FFA000);
    color: #333;
    text-shadow: none;
}

/* Evolution Stage Styles */
.pet-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
    padding: 8px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.stage-emoji {
    font-size: 24px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    to {
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
}

.stage-description {
    color: #FFD700;
    font-size: 14px;
    font-style: italic;
    text-align: center;
}

/* Evolution-specific ASCII art styles */
.ascii-pet.stage-bebe pre {
    color: #FFB6C1;
    font-size: 18px;
}

.ascii-pet.stage-nino pre {
    color: #FFD700;
    font-size: 20px;
}

.ascii-pet.stage-joven pre {
    color: #87CEEB;
    font-size: 22px;
}

.ascii-pet.stage-adolescente pre {
    color: #DDA0DD;
    font-size: 24px;
}

.ascii-pet.stage-adulto pre {
    color: #FF6347;
    font-size: 26px;
    text-shadow: 0 0 10px rgba(255, 99, 71, 0.5);
}

/* Evolution Message */
.evolution-message {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    margin: 15px 0;
    animation: celebrate 0.6s ease-in-out;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

@keyframes celebrate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Disabled Action Button */
.action-btn.disabled {
    background: linear-gradient(135deg, #666, #888);
    opacity: 0.5;
    cursor: not-allowed;
    color: #ccc;
}

.action-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.1);
}

/* Sleep System Styles */
.wake-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #333 !important;
    font-size: 16px !important;
    padding: 20px !important;
    width: 100%;
}

.wake-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6) !important;
}

.sleep-info {
    grid-column: 1 / -1;
    text-align: center;
    background: rgba(139, 69, 19, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-top: 10px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.sleep-info p {
    margin: 5px 0;
    color: #D2B48C;
    font-size: 14px;
}

.sleep-status {
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.sleep-time {
    color: #FFD700;
    font-weight: bold;
    font-size: 14px;
}

/* Sleep/Night Mode Effect */
.sleeping-mode {
    position: relative;
}

.sleeping-mode::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 60, 0.3);
    z-index: 500;
    pointer-events: none;
    animation: fadeToNight 1s ease-in-out;
}

.sleeping-mode .container {
    filter: brightness(0.75) contrast(0.9);
    transition: filter 1s ease-in-out;
}

.sleeping-mode .wake-btn {
    position: relative;
    z-index: 600;
    filter: brightness(1.2) !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8) !important;
    animation: pulseWake 2s ease-in-out infinite;
}

.sleeping-mode .sleep-info {
    position: relative;
    z-index: 600;
    filter: brightness(1.1);
}

.sleeping-mode .sleep-status {
    position: relative;
    z-index: 600;
    filter: brightness(1.1);
}

@keyframes fadeToNight {
    from {
        background: rgba(30, 30, 60, 0);
    }
    to {
        background: rgba(30, 30, 60, 0.3);
    }
}

@keyframes pulseWake {
    0%, 100% {
        transform: translateY(-3px) scale(1);
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.8);
    }
}

/* Add stars effect when sleeping */
.sleeping-mode::after {
    content: '✨ ⭐ ✨ 🌙 ✨ ⭐ ✨';
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 600;
    font-size: 20px;
    animation: twinkle 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.container {
    display: grid;
    grid-template-columns: 300px 1fr 350px;
    gap: 20px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 100vh;
}

/* Left Panel Styles */
.left-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.status-section, .talents-section {
    margin-bottom: 30px;
}

.status-section h2, .talents-section h2 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
    text-align: center;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px;
    border-radius: 10px;
}

.status-item, .talent-item {
    margin-bottom: 15px;
}

.status-item strong, .talent-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    letter-spacing: 1px;
}

.status-bar-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.status-bar {
    background: rgba(0, 0, 0, 0.3);
    height: 8px;
    border-radius: 4px;
    flex: 1;
    min-width: 100px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.status-fill.health {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.status-fill.bond {
    background: linear-gradient(90deg, #FFC107, #FF9800);
}

.status-fill.discipline {
    background: linear-gradient(90deg, #9C27B0, #E91E63);
}

.status-fill.talent {
    background: linear-gradient(90deg, #2196F3, #03DAC6);
}

.status-fill.sleep {
    background: linear-gradient(90deg, #673AB7, #9C27B0);
}

.status-fill.energy {
    background: linear-gradient(90deg, #FF9800, #FFC107);
}

.status-fill.fun {
    background: linear-gradient(90deg, #E91E63, #FF5722);
}

.status-fill.hunger {
    background: linear-gradient(90deg, #FF5722, #FF9800);
}

.status-fill.cleanliness {
    background: linear-gradient(90deg, #4FC3F7, #29B6F6);
}

.accident-indicator {
    background: linear-gradient(135deg, #FF5722, #F44336);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    animation: urgentPulse 1.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.critical-health-indicator {
    background: linear-gradient(135deg, #D32F2F, #B71C1C);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.5);
    animation: criticalPulse 1s infinite;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

@keyframes criticalPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(211, 47, 47, 0.5);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 6px 25px rgba(211, 47, 47, 0.8);
    }
}

/* Mini-Game Styling */
.mini-game-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.mini-game-panel {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.close-minigame {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    z-index: 1001;
    transition: background 0.3s ease;
}

.close-minigame:hover {
    background: rgba(255, 0, 0, 1);
    transform: scale(1.1);
}

.mini-game-panel h3 {
    text-align: center;
    color: #FFD700;
    margin-bottom: 10px;
}

.mini-game-panel p {
    text-align: center;
    margin-bottom: 20px;
    color: #E0E0E0;
}

/* Music Game Styling */
.music-game {
    text-align: center;
}

.sequence-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.music-btn {
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.music-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.music-btn.active {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
}

.game-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.game-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

/* Sports Game Styling */
.sports-game {
    text-align: center;
}

.sports-display {
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    gap: 10px;
}

.coach-instruction {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    font-size: 16px;
    animation: coachPulse 2s infinite;
}

@keyframes coachPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.score-display, .timer-display {
    font-size: 14px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
}

.sports-field {
    position: relative;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 15px;
    height: 250px;
    margin-bottom: 20px;
    overflow: visible; /* Changed from hidden to visible */
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.mini-game-panel .sports-field {
    height: 400px;
    width: 100%;
}

.target-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sports-target {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: targetPop 0.3s ease-out;
    z-index: 10;
}

.sports-target.moving {
    animation: targetPop 0.3s ease-out, ballBounce 0.5s ease-in-out infinite;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.sports-target:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.sports-target:active {
    transform: scale(0.9);
}

@keyframes ballBounce {
    0%, 100% { 
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    }
    50% { 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
        border-width: 4px;
    }
}

@keyframes targetPop {
    0% { 
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% { 
        transform: scale(1);
        opacity: 1;
    }
}

.game-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Art Game Styling */
.art-game {
    text-align: center;
}

.art-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.art-instruction {
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.art-canvas-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.art-pattern, .art-canvas {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
}

.pattern-title, .canvas-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.pattern-grid, .canvas-grid {
    display: grid;
    gap: 2px;
    max-width: 200px;
    margin: 0 auto;
    background: #ddd;
    padding: 5px;
    border-radius: 8px;
}

.pattern-cell, .canvas-cell {
    aspect-ratio: 1;
    border-radius: 3px;
    border: 1px solid #ccc;
    transition: all 0.2s ease;
    min-width: 25px;
    min-height: 25px;
}

.canvas-cell {
    cursor: pointer;
    position: relative;
}

.canvas-cell:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.canvas-cell.correct {
    border: 3px solid #4CAF50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.canvas-cell.incorrect {
    border: 3px solid #f44336;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.5);
    animation: errorShake 0.5s ease;
}

.art-palette {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-wrap: wrap;
}

.palette-title {
    font-size: 14px;
    font-weight: bold;
    color: #FFD700;
    margin-right: 10px;
}

.color-btn {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.color-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.color-btn.selected {
    border: 4px solid #FFD700;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    animation: colorPulse 1s ease-in-out infinite;
}

@keyframes errorShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes colorPulse {
    0%, 100% { 
        transform: scale(1.15);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    }
    50% { 
        transform: scale(1.2);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
    }
}

/* Color Mixing Game Styling */
.science-game {
    text-align: center;
}

.science-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.science-instruction {
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.mixing-workspace {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.target-color-display, .mixing-canvas {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
}

.target-title, .canvas-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.target-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.target-name {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px;
    border-radius: 8px;
    border: 2px solid #FFD700;
}

.drop-zone {
    width: 200px;
    height: 150px;
    border: 3px dashed #666;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
}

.drop-zone.drag-over {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    transform: scale(1.05);
}

.drop-zone.success {
    border-color: #4CAF50;
    background: rgba(76, 175, 80, 0.3);
    animation: successPulse 1s ease;
}

.drop-zone.incorrect {
    border-color: #f44336;
    background: rgba(244, 67, 54, 0.3);
    animation: errorShake 0.5s ease;
}

.drop-hint {
    color: #666;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    pointer-events: none;
}

.color-blob {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    animation: blobDrop 0.5s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.color-palette {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.palette-title {
    font-size: 16px;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.draggable-colors {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.color-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: grab;
    transition: all 0.3s ease;
    border: 4px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    user-select: none;
}

.color-circle:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.color-circle.dragging {
    opacity: 0.7;
    transform: rotate(5deg) scale(1.1);
    cursor: grabbing;
}

.color-emoji {
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.5));
}

.mixing-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

.mix-btn, .clear-btn {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.clear-btn {
    background: linear-gradient(135deg, #ff9800, #e68900);
}

.mix-btn:hover, .clear-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@keyframes blobDrop {
    0% { 
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.7);
    }
}

@keyframes urgentPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
    }
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
}

.status-label {
    font-size: 11px;
    font-weight: bold;
    min-width: 35px;
}

.status-text {
    font-size: 10px;
    color: #ccc;
    font-style: italic;
}

/* Center Panel Styles */
.center-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pet-container {
    text-align: center;
    width: 100%;
}

.pet-info {
    margin-bottom: 20px;
}

.pet-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #FFD700;
}

.pet-mood {
    background: rgba(0, 0, 0, 0.4);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 10px;
    display: inline-block;
}

.mood-emoji {
    font-size: 24px;
    margin-right: 8px;
}

.mood-text {
    font-weight: bold;
}

.pet-quote {
    font-style: italic;
    color: #E0E0E0;
    margin-bottom: 20px;
}

.pet-display {
    margin: 30px 0;
}

.pet-image {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pet-image.happy {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: bounce 2s infinite;
}

.pet-image.sad {
    filter: grayscale(50%);
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.ascii-pet {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    line-height: 1.2;
    color: #FFE55C;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hearts {
    margin-top: 15px;
    font-size: 20px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.action-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.action-btn:active {
    transform: translateY(0);
}

.action-btn.feed {
    background: linear-gradient(135deg, #FF6B6B, #FF8787);
}

.action-btn.sleep {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
}

.action-btn.clean {
    background: linear-gradient(135deg, #45B7D1, #96C93D);
}

.action-btn.play {
    background: linear-gradient(135deg, #F093FB, #F5576C);
}

.activity-message {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    font-style: italic;
    color: #E0E0E0;
    margin-top: 20px;
}

/* Right Panel Styles */
.right-panel {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: fit-content;
}

.journey-section h2 {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
    background: rgba(255, 215, 0, 0.2);
    padding: 8px;
    border-radius: 10px;
}

.journey-entry {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #FFD700;
}

.journey-entry h3 {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 8px;
}

.journey-entry p {
    font-size: 12px;
    line-height: 1.4;
    color: #E0E0E0;
    margin-bottom: 8px;
}

.journey-time {
    font-size: 10px;
    color: #999;
    text-align: right;
}

.behavior-section {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-top: 20px;
}

.behavior-section h3 {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 10px;
}

.behavior-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.behavior-form select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
}

.behavior-form select option {
    background: #333;
    color: white;
}

.reward-btn {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #333;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.reward-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */

/* Tablet Layout - Keep 3 columns but make them narrower */
@media (max-width: 1200px) and (min-width: 769px) {
    .container {
        grid-template-columns: 200px 1fr 200px;
        gap: 10px;
        padding: 15px;
    }
    
    .left-panel, .right-panel {
        font-size: 14px;
    }
    
    .status-section h2, .talents-section h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .pet-image {
        width: 220px;
        height: 220px;
    }
    
    .action-row {
        gap: 8px;
    }
    
    .action-btn {
        padding: 10px 8px;
        font-size: 13px;
    }
}

/* Mobile Layout - Single column for small screens */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
    
    .right-panel, .left-panel {
        order: 2;
    }
    
    .center-panel {
        order: 1;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .action-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .pet-image {
        width: 200px;
        height: 200px;
    }
    
    .ascii-pet {
        font-size: 18px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFD700;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Hidden by default */
.notification.hidden {
    display: none;
}

/* Admin Interface Styles */
.admin-section {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.admin-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.admin-section h4 {
    color: white;
    margin: 15px 0 10px 0;
    font-size: 14px;
}

.pending-behaviors, .recent-behaviors {
    margin-bottom: 20px;
}

.pending-behavior-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    border-left: 4px solid #fbbf24;
}

.pending-behavior-item .behavior-info {
    margin-bottom: 10px;
}

.pending-behavior-item strong {
    color: #fbbf24;
    font-size: 14px;
}

.pending-behavior-item .reporter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    margin-left: 5px;
}

.pending-behavior-item .behavior-description {
    color: white;
    font-style: italic;
    margin: 5px 0;
    font-size: 13px;
}

.pending-behavior-item .behavior-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.validation-buttons {
    text-align: right;
}

.approve-btn, .reject-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 5px;
    transition: all 0.2s ease;
}

.approve-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.approve-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}

.reject-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.reject-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-1px);
}

.no-pending {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.no-pending p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 13px;
}

.recent-behavior-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
}

.recent-behavior-item.approved {
    border-left: 4px solid #10b981;
}

.recent-behavior-item.rejected {
    border-left: 4px solid #ef4444;
}

.recent-behavior-item .status-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.recent-behavior-item .behavior-details {
    flex: 1;
    color: white;
}

.recent-behavior-item .validation-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    margin-top: 3px;
}

/* PIN Validation Styles */
.pending-validation-section {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pending-validation-section h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 14px;
}

.pending-info {
    color: white;
    font-size: 12px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.pending-behavior-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-left: 4px solid #fbbf24;
}

.behavior-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.behavior-header strong {
    color: white;
    font-size: 13px;
}

.behavior-time {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.behavior-desc {
    color: white;
    font-style: italic;
    margin: 8px 0;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 5px;
}

.behavior-reporter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    margin-bottom: 10px;
}

.validation-form {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
}

.pin-validation {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pin-label {
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 90px;
}

.inline-validation-form {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.admin-pin-input {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 6px 8px;
    border-radius: 5px;
    width: 50px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.admin-pin-input:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.3);
}

.admin-pin-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-approve-btn, .quick-reject-btn {
    padding: 6px 8px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 35px;
}

.quick-approve-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-approve-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: scale(1.05);
}

.quick-reject-btn {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
}

.quick-reject-btn:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.05);
}

.admin-validation-form {
    text-align: right;
}

.validation-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.validation-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

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

/* User Registration and Pet Creation Styles */
.form-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.tab-btn {
    flex: 1;
    padding: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.form-group select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 14px;
    appearance: none;
    cursor: pointer;
}

.form-group select option {
    background: #333;
    color: white;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    line-height: 1.3;
}

.pet-suggestions {
    margin-top: 20px;
    text-align: center;
}

.pet-suggestions .user-btn {
    margin: 5px;
    min-width: 80px;
}

.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
    font-size: 14px;
    animation: fadeIn 0.3s ease;
}

/* User Management Styles */
.user-management {
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.user-management h4, .user-management h5 {
    color: white;
    margin-bottom: 12px;
    font-size: 14px;
}

.users-list {
    margin-bottom: 20px;
}

.user-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    font-size: 12px;
}

.user-item.admin {
    border-left: 3px solid #fbbf24;
}

.user-item.nino {
    border-left: 3px solid #10b981;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-icon {
    font-size: 16px;
}

.user-info strong {
    color: white;
    font-size: 13px;
}

.user-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
}

.user-pet .pet-info {
    color: #10b981;
    font-size: 11px;
}

.user-pet .no-pet {
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
    font-size: 11px;
}

.user-created {
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
}

.quick-user-creation {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 80px 120px 80px 60px;
    gap: 8px;
    align-items: center;
}

.form-row input, .form-row select {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px;
    border-radius: 5px;
    font-size: 12px;
}

.form-row select {
    appearance: none;
    cursor: pointer;
}

.form-row select option {
    background: #333;
    color: white;
}

.quick-create-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-create-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
}