/* Break Overlay Styles */
.break-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease, visibility 0.4s;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

.break-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.break-bg-layer {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.4);
    z-index: 1;
}

.break-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 80%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.break-left-panel {
    display: flex;
    flex-direction: column;
}

.break-time {
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.break-date {
    font-size: 2rem;
    font-weight: 300;
    margin-top: 10px;
    color: #cbd5e1;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    min-width: 350px;
}

.break-icon-container {
    background: rgba(57, 181, 74, 0.2);
    color: #39B54A;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.break-icon-container svg {
    width: 40px;
    height: 40px;
}

.break-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 30px 0;
}

.break-timer-wrapper {
    margin-bottom: 40px;
}

.break-timer {
    font-size: 3rem;
    font-weight: 700;
    color: #39B54A;
    font-variant-numeric: tabular-nums;
}

.break-timer-label {
    font-size: 1rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-return-work {
    background: #39B54A;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(57, 181, 74, 0.4);
}

.btn-return-work:hover {
    background: #2ea043;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(57, 181, 74, 0.5);
}

@media (max-width: 768px) {
    .break-content-wrapper {
        flex-direction: column;
        justify-content: center;
    }
    .break-time {
        font-size: 5rem;
    }
}
