

@media (max-width: 576px) {
  #timerwidget .countdown-timer span {
    font-size: 0.9rem;
    padding: 6px 8px;
    margin: 0 2px;
  }
}
.countdown-timer {
    font-size: 1.5rem;
    white-space: nowrap;
}

.countdown-timer span {
    font-size: 1.1rem;
    padding: 8px 10px;
    border-radius: 8px;
    margin: 0 4px;
    display: inline-block;
}

/* Style 1: Modern Dark Style */
#timerwidget.style-1 {
    background-color: #343a40;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}
#timerwidget.style-1 .countdown-timer span {
    background-color: #ff6f61;
}

/* Style 2: Retro Neon Style */
#timerwidget.style-2 {
    background-color: #222222;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}
#timerwidget.style-2 .countdown-timer span {
    text-shadow: 1px 1px 3px #fff;
}
#timerwidget.style-2 .countdown-timer span:nth-child(1) {
    background-color: #39ff14;
    color: #000;
}
#timerwidget.style-2 .countdown-timer span:nth-child(2) {
    background-color: #ff073a;
}
#timerwidget.style-2 .countdown-timer span:nth-child(3) {
    background-color: #ffcb00;
}
#timerwidget.style-2 .countdown-timer span:nth-child(4) {
    background-color: #00bcd4;
}

/* Style 3: Gradient Style linear-gradient(135deg, #ff7f50, #ff1493); darkslateblue*/
#timerwidget.style-3 {
    background: linear-gradient(135deg, #ff7f50, #ff1493);
    color: white;
    padding: 15px;
    border-radius: 20px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}
#timerwidget.style-3 .countdown-timer span:nth-child(1) {
    background-color: rgba(255, 99, 71, 0.9);
}
#timerwidget.style-3 .countdown-timer span:nth-child(2) {
    background-color: rgba(255, 20, 147, 0.9);
}
#timerwidget.style-3 .countdown-timer span:nth-child(3) {
    background-color: rgba(255, 215, 0, 0.9);
}
#timerwidget.style-3 .countdown-timer span:nth-child(4) {
    background-color: rgba(0, 191, 255, 0.9);
}

/* Style 4: Frosty Winter Style */
#timerwidget.style-4 {
    background-color: #1e3d58;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}
#timerwidget.style-4 .countdown-timer span:nth-child(1) {
    background-color: #00bfff;
}
#timerwidget.style-4 .countdown-timer span:nth-child(2) {
    background-color: #1e90ff;
}
#timerwidget.style-4 .countdown-timer span:nth-child(3) {
    background-color: #add8e6;
}
#timerwidget.style-4 .countdown-timer span:nth-child(4) {
    background-color: #4682b4;
}

/* Style 5: Sunny Day Style */
#timerwidget.style-5 {
    background-color: #f8f9fa;
    color: #212529;
    padding: 15px;
    border-radius: 20px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}
#timerwidget.style-5 .countdown-timer span:nth-child(1) {
    background-color: #ffeb3b;
}
#timerwidget.style-5 .countdown-timer span:nth-child(2) {
    background-color: #03a9f4;
}
#timerwidget.style-5 .countdown-timer span:nth-child(3) {
    background-color: #8bc34a;
}
#timerwidget.style-5 .countdown-timer span:nth-child(4) {
    background-color: #ff5722;
}

/* Style 6: Minimalist Elegant Style #ffffff */
#timerwidget.style-6 {
    background-color: darkslateblue;
    color: #333333;
    padding: 15px;
    border-radius: 20px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}
#timerwidget.style-6 .countdown-timer span {
    background-color: #f5f5f5;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
#timerwidget.style-6 .countdown-timer span:hover {
    background-color: #e0e0e0;
}
#timerwidget.style-6 .countdown-timer span:nth-child(1) {
    background-color: #f44336;
}
#timerwidget.style-6 .countdown-timer span:nth-child(2) {
    background-color: #4caf50;
}
#timerwidget.style-6 .countdown-timer span:nth-child(3) {
    background-color: #ff9800;
}
#timerwidget.style-6 .countdown-timer span:nth-child(4) {
    background-color: #2196f3;
}
