body {
    background-color: #1e1e1e;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;              /* <-- Make sure this is here */
    min-height: 100vh;
    display: flex;          /* Add these two lines for full vertical centering if you like */
    justify-content: center;
    align-items: flex-start; /* Or center for full vertical center: align-items: center; */
}

.container {
    max-width: 430px;
    width: 100%;             /* <-- Add this to ensure it fills the parent horizontally */
    margin: 85px auto 0 auto;
    background: #232323;
    border-radius: 14px;
    padding: 32px 24px 28px 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.17);
}

h1 {
    text-align: center;
    font-weight: 700;
    color: #ceadff;
    margin-bottom: -10px;
}

h2 {
    text-align: center;
    font-weight: 20;
    color: #9a9a9a;
    margin-bottom: 28px;
}


.song-form label {
    font-weight: 500;
    color: #d0bfff;
    margin-top: 12px;
    display: block;
    margin-bottom: 5px;
}

.song-form input[type="text"],
.song-form select {
    width: 96%;
    padding: 8px 8px;
    border: 1.5px solid #36324a;
    background: #1a1824;
    color: #e0e0e0;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 3px;
    transition: border-color 0.2s;
}

.song-form input[type="text"]:focus,
.song-form select:focus {
    outline: none;
    border-color: #9a52e6;
}

.song-form button {
    width: 100%;
    background: linear-gradient(90deg, #8703ea 60%, #b065f8 100%);
    color: #fff;
    padding: 11px 0;
    font-size: 1.15rem;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 8px;
    transition: background 0.18s;
    box-shadow: 0 2px 10px #2e2e2e3a;
}

.song-form button:hover {
    background: linear-gradient(90deg, #b065f8 60%, #8703ea 100%);
}

.status-msg {
    color: #ffcd57;
    font-size: 1.08rem;
    text-align: center;
    margin-top: 15px;
}

.top-banner {
    width: 100vw;
    min-width: 320px;
    background: linear-gradient(90deg, #8703ea 60%, #b065f8 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 14px 0;
    box-shadow: 0 2px 12px #0002;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.banner-link {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.08rem;
    letter-spacing: 0.5px;
    padding: 7px 18px;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s;
}

.banner-link:hover {
    background: #fff2;
    color: #ffe083;
    text-decoration: none;
}

