/* General layout */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #121212;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

/* Extra space above the title */
h1 {
    color: #ffcc00;
    font-size: 1.8em;
    margin-top: 40px; /* Added space from the top */
    margin-bottom: 20px; /* Space below title */
}

/* Main container */
.container {
    width: 90%;
    max-width: 400px;
    background: #1e1e1e;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px; /* Added internal padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Clock and Timer Sections */
h2 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

p {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Buttons */
button {
    padding: 10px 14px;
    margin: 8px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    opacity: 0.8;
}

button:first-of-type {
    background-color: #28a745;
    color: white;
}

button:last-of-type {
    background-color: #dc3545;
    color: white;
}

/* Alarm toggle button */
#toggleAlarm {
    background-color: #007bff;
    color: white;
    margin-top: 15px; /* More space between buttons */
    transition: background-color 0.3s;
}
