/*
 * Compiled stylesheet: profile_meditation.css
 * Shared by views:
 *   - app/Views/front/profile/meditation.php
 */

.timer-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .meditation-card {
        background: white;
        border-radius: 2rem;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }
    
    .meditation-card:hover {
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    }
    
    .timer-circle {
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: linear-gradient(135deg, #fff9f0 0%, #ffe6d5 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin: 0 auto;
    }
    
    .timer-circle-inner {
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 8px 16px rgba(183,110,46,0.1);
    }
    
    .timer-display {
        font-size: 3rem;
        font-family: monospace;
        font-weight: 900;
        color: #B76E2E;
        letter-spacing: 2px;
    }
    
    .btn-meditation {
        background: #B76E2E;
        color: white;
        padding: 12px 24px;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }
    
    .btn-meditation:hover:not(:disabled) {
        background: #9B5A24;
        transform: scale(1.05);
    }
    
    .btn-meditation:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }
    
    .btn-secondary {
        background: #2b62cf;
        color: white;
    }
    
    .btn-secondary:hover:not(:disabled) {
        background: #2c64d4;
    }
    
    .quote-card {
        background: #fff9f0;
        border-radius: 1.5rem;
        padding: 1.5rem;
        border: 1px dashed #fed7aa;
        text-align: center;
    }
    
    .quote-text {
        font-size: 0.875rem;
        color: #B76E2E;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        line-height: 1.6;
    }
    
    .history-item {
        padding: 1.25rem;
        background: #f9fafb;
        border-radius: 1rem;
        border: 1px solid #f3f4f6;
        transition: all 0.3s ease;
    }
    
    .history-item:hover {
        background: white;
        border-color: #fed7aa;
    }
    
    .login-prompt {
        background: linear-gradient(135deg, #B76E2E 0%, #9B5A24 100%);
        border-radius: 2rem;
        padding: 3rem;
        text-align: center;
        color: white;
    }
    
    .login-prompt a {
        background: white;
        color: #B76E2E;
        padding: 12px 30px;
        border-radius: 9999px;
        font-weight: 700;
        text-decoration: none;
        display: inline-block;
        margin-top: 1rem;
        transition: transform 0.3s ease;
    }
    
    .login-prompt a:hover {
        transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
        .timer-circle {
            width: 220px;
            height: 220px;
        }
        .timer-circle-inner {
            width: 200px;
            height: 200px;
        }
        .timer-display {
            font-size: 2rem;
        }
    }