/* ========================================
   Wait Timer Plugin — Styles
   ======================================== */

.wt-container {
    text-align: center;
    margin: 30px auto;
    max-width: 320px;
    font-family: sans-serif;
}

/* Message text */
.wt-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Circle wrapper */
.wt-circle-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}

/* SVG circles */
.wt-circle-svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg); /* start from top */
}

.wt-circle-bg {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 8;
}

.wt-circle-progress {
    fill: none;
    stroke: #4f46e5; /* indigo */
    stroke-width: 8;
    stroke-linecap: round;
    /* circumference of r=45 circle ≈ 282.7 */
    stroke-dasharray: 282.7;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

/* Countdown number in the middle */
.wt-countdown {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    font-weight: 700;
    color: #4f46e5;
    line-height: 1;
}

/* The reveal button */
.wt-button {
    display: inline-block;
    padding: 12px 32px;
    background: #4f46e5;
    color: #fff !important;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s, transform 0.1s;
}

.wt-button:hover {
    background: #3730a3;
    transform: translateY(-1px);
}

/* Hidden state */
.wt-hidden {
    display: none !important;
}
