.my36-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #F6F1E9;
    padding: 40px;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    justify-content: center;
    margin: 0 auto;
    border: 3px solid #C4973A;
    box-shadow: 0 4px 15px rgba(44, 62, 53, 0.1);
}
.my36-timer-circle {
    margin-bottom: 20px;
}
.my36-timer-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    color: #2C3E35;
    font-weight: 300;
}
.my36-timer-controls {
    display: flex;
    gap: 10px;
}
.my36-timer-btn {
    background: #C4973A;
    color: #fff;
    border: 1px solid #C4973A;
    padding: 8px 16px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.my36-timer-btn:hover {
    background: #a9802d;
}
.my36-timer-btn-outline {
    background: transparent;
    color: #C4973A;
}
.my36-timer-btn-outline:hover {
    background: #C4973A;
    color: #fff;
}