/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    background-color: #1c2025; /* Dark background color */
    color: #ffffff; /* White text color */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    width: 400px;
    background-color: #272b30; /* Slightly lighter dark color */
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-name {
    font-size: 2em;
    color: #00a78e; /* Teal color */
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.clock {
    margin-bottom: 40px;
}

#time {
    font-size: 3.5em;
    margin-bottom: 15px;
}

#date {
    font-size: 1.3em;
    color: #bbb; /* Light grey for date */
}

.alarm-timer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 40px;
}

.alarm, .timer {
    width: 48%;
    text-align: center;
}

h2 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #ffffff;
}

input[type="time"], input[type="number"] {
    width: 100%;
    padding: 8px 2.5px 8px 2.5px;
    margin-bottom: 15px;
    border: none;
    border-radius: 12px;
    background-color: #3a3f44; /* Dark input background */
    color: #fff;
    font-size: 1.2em;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #00a78e; /* Teal button color */
    color: #ffffff; /* White text */
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #008f7a; /* Darker teal on hover */
}

#alarm-list {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    color: #61dafb; /* Light blue for alarm list */
}

#alarm-list li {
    margin-bottom: 8px;
    background-color: #3a3f44; /* Match input background */
    padding: 10px;
    border-radius: 8px;
}

#timer-countdown {
    margin-top: 15px;
    font-size: 1.8em;
    color: #ffdd57; /* Yellow for countdown */
}

#alarm-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#stop-alarm {
    background-color: #ff5555; /* Red for stop alarm */
    color: #fff;
    font-size: 1.2em;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#stop-alarm:hover {
    background-color: #ff0000; /* Darker red on hover */
}

.hidden {
    display: none;
}
