/*
Theme Name: Work and Earn Theme
Author: You
Version: 1.0
*/

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #ffffff;
    margin: 0;
    padding: 0;
    color: #333;
}

.container {
    width: 90%;
    max-width: 450px;
    margin: 20px auto;
    padding: 15px;
}

h1 {
    color: #1aa32a;
    font-size: 24px;
    font-weight: bold;
}

.subtitle {
    font-size: 14px;
    margin-bottom: 25px;
    color: #666;
}

.timer {
    font-size: 36px;
    font-weight: bold;
    color: #ff2e2e;
    margin-bottom: 25px;
}

.hours-label {
    font-size: 16px;
    margin-bottom: 15px;
}

.btn-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-btn {
    border: 2px solid #1aa32a;
    color: #1aa32a;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: 0.2s;
}

.option-btn:hover {
    background: #1aa32a;
    color: #fff;
}

.start-btn {
    display: block;
    background: #cfcfcf;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    margin-top: 30px;
    font-size: 18px;
    text-decoration: none;
}

.start-btn.active {
    background: #1aa32a;
}

.start-btn.disabled {
    pointer-events: none;
    opacity: 0.6;
}

/* Responsive */
@media (min-width: 600px) {
    h1 {
        font-size: 28px;
    }

    .btn-grid {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .option-btn {
        padding: 12px 30px;
        font-size: 18px;
    }
}
