.timer-container {
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

#breathing-circle {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    border-radius: 50%;
    background: #6496ff;              /* fallback solid colour */
    background: rgba(100, 150, 255, 0.3);  /* preferred translucent colour */
    animation: breathe 8s ease-in-out infinite;
}

@keyframes breathe {
    0%   { transform: scale(0.8); opacity: 0.4; }
    50%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.8); opacity: 0.4; }
}

#display {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: bold;
}

.session-buttons button,
.controls button {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1rem;
}

.countdown-text {
    font-size: 0.9em !important;
    line-height: 1em;
    white-space: nowrap;
}




.gong-toggle {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
}

.timer-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6em;
}



.embed-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center; /* Centers everything inside */
}

.embed-header {
    margin-bottom: 1.2em;
}

.embed-title {
    margin: 0;
    font-size: 1.4em;
    font-weight: 600;
}

.embed-attribution {
    margin: 0.3em 0 0;
    opacity: 0.8;
}

.embed-box {
    margin-top: 2em;
    padding: 1em;
    background: #f4f4f4;
    border-radius: 6px;
}

.embed-code-container {
    position: relative;
}

#embedCode {
    width: 100%;
    height: 100px; /* Bigger box */
    font-family: monospace;
    font-size: 0.9em;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical; /* User can expand if needed */
    box-sizing: border-box;
    white-space: pre; /* Prevents weird wrapping */
}

.copy-button {
    margin-top: 0.5em;
    padding: 8px 14px;
    font-size: 0.9em;
    cursor: pointer;
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
    #embedCode {
        height: 120px; /* Slightly taller on mobile */
        font-size: 0.85em;
    }
}
