/* my-countdown.css */
.my-countdown-wrapper {
    max-width: 400px;
    margin: 15px auto; /* centrarea pe pagină */
    background: #fff; 
    border: 2px solid #e63946;
    border-radius: 8px;
    text-align: center;
    padding: 7px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.my-countdown-header {
    font-size: 18px;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 5px;
}
.my-countdown-timer {
    /* asigură că întregul timer este centrat */
    display: flex;
    justify-content: center;
    align-items: center;
}
.my-countdown-timer .countdown-row {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e63946;
    border-radius: 6px;
    padding: 10px 15px;
    gap: 10px;
}
.my-countdown-timer .countdown-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}
.my-countdown-timer .countdown-value {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    line-height: 1.2;
}
.my-countdown-timer .countdown-label {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-top: 2px;
}
.countdown-separator {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

