body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
.form-container {
    background-color: #1e1e1e;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 100%;
    width: 425px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}
.logo {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
}
.title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}
.success-message {
    color: #28a745;
    margin-bottom: 20px;
}
.banner {
    background-color: #ffcc00;
    color: #000;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
}
label {
    display: block;
    margin-bottom: 5px;
    text-align: left;
}
input[type="url"], input[type="text"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: #222;
    color: #fff;
    box-sizing: border-box;
}
input[type="submit"], .search-button {
    width: 100%;
    padding: 12px;
    background-color: #28a745; /* Green color for submit button */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
}
input[type="submit"]:hover {
    background-color: #218838;
}
.now-playing {
    margin-top: 20px;
    font-size: 18px;
}
.admin-button-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.admin-button {
    padding: 12px 24px;
    background-color: #007bff; /* Blue color for admin button */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    display: inline-block;
}
.admin-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.4);
}
.copyright {
    font-size: 12px;
    color: #888;
    margin-bottom: 25px;
    text-align: center;
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
    }
    .form-container {
        width: calc(100% - 70px); /* Adjusted width with margin */
        max-width: 100%;
    }
    .admin-button {
        padding: 10px 20px;
        font-size: 14px;
    }
}