/* Styling for the buttons and container */
.container {
            display: grid;
            grid-template-columns: repeat(6, 1fr); /* 11 columns */
            gap: 5px;
            margin: 20px;
        }

.button {
    padding: 10px;
    background-color: #006400; /* Dark Green */
    color: white;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bold;
}

.button.active {
    background-color: #32CD32; /* Bright Green */
}

.button:hover {
    background-color: #228B22; /* Darker green on hover */
}

#playSongButton {
            margin-top: 20px;
            padding: 10px 20px;
            font-size: 24px;
            cursor: pointer;
        }

/* Styling for the STOP button */
.stop-button {
    grid-column: span 6; /* Takes up the full row */
    background-color: #FF0000; /* Red */
    border-radius: 20px;
    padding: 20px;
}

.stop-button:hover {
    background-color: #CC0000; /* Darker Red on hover */
}