.timer-simple-container {
    /*background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	*/
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
}

/*
.timer-simple-timer {
    font-family: 'Oxanium', monospace;
    font-size: 5rem;
    font-weight: 700;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-shadow: 0 0 10px #eee;
    color: #777;
}
*/

.timer-simple-timer {
    font-size: 72px;
    text-align: center;
    margin: 70px 0;
    font-variant-numeric: tabular-nums;
    letter-spacing: 2px;
    color: #2c3e50;
    font-weight: bold;
}

.timer-simple-input-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.timer-simple-input-field {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-simple-input-field label {
    margin-bottom: 5px;
    font-weight: 600;
	color: #555;
}

.timer-simple-input-field input {
    width: 80px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
	background: #fff;
    border: solid 2px #DDD;
}

.timer-simple-checkbox-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.timer-simple-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-simple-checkbox-item label {
    color: #555;
}

.timer-simple-checkbox-item input {
    width: 18px;
    height: 18px;
}

.timer-simple-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
	margin-bottom: 40px;
}

.timer-simple-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.timer-simple-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.timer-simple-start-btn {
    background-color: #28a745;
    color: white;
}

.timer-simple-stop-btn {
    background-color: #dc3545;
    color: white;
}

.timer-simple-reset-btn {
    background-color: #17a2b8;
    color: white;
}

.timer-simple-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.timer-simple-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    color: #333;
    box-shadow: 0 0 30px rgba(255, 187, 45, 0.8);
    animation: timer-simple-pulse 1.5s infinite;
}

.timer-simple-modal-content h2 {
    color: #d9534f;
    margin-bottom: 20px;
    font-size: 2rem;
}

.timer-simple-modal-content p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

#timer-simple-close-modal {
    background-color: #17a2b8;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
}

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

@media (max-width: 600px) {
    .timer-simple-timer {
        font-size: 3.5rem;
    }
    
    .timer-simple-input-group {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .timer-simple-btn {
        padding: 10px 20px;
    }
}