/* sd-timer/includes/style.css */
.sdtimer-settings-container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-top: 20px;
}

.sdtimer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.sdtimer-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sdtimer-input-group label {
    font-weight: 600;
    color: #23282d;
}

.sdtimer-input-group input {
    width: 100%;
    max-width: 200px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

#sdtimer-save {
    align-self: flex-start;
}

/* Admin bar counter styles */
#wpadminbar .sdtimer-counter {
    transition: background-color 0.3s ease;
}

#wpadminbar .time-remaining {
    background-color: #4CAF50;
}

#wpadminbar .time-exceeded {
    background-color: #f44336;
}

#wpadminbar .sdtimer-counter > .ab-item {
    color: #fff !important;
}

#wpadminbar .sdtimer-counter span {
    font-family: monospace;
    font-weight: bold;
}