/* Stiluri generale pentru corpul paginilor */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* Container central pentru conținut */
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

/* Stil pentru titlu */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Stil pentru player-ul audio */
audio {
    width: 100%;
    margin-bottom: 20px;
}

/* Stil pentru butonul de redare melodie aleatorie */
button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

/* Stiluri pentru formularul de adăugare melodii */
form {
    margin-top: 20px;
}

/* Stil pentru etichete și input-uri din formular */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Stil pentru butonul de adăugare */
input[type="submit"] {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Stil pentru mesajele de rezultat */
#result {
    margin-top: 20px;
    font-size: 14px;
    color: green;
}
