body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}
h1 {
    text-align: center;
    color: #555;
}
.days-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.days-nav .arrow {
    font-size: 32px;
    color: #007bff;
    cursor: pointer;
    user-select: none;
}
.days-nav .arrow:hover {
    color: #0056b3;
}
.days-nav .days {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}
.days-nav .days a {
    padding: 10px 20px;
    background-color: white;
    border-radius: 50px;
    text-decoration: none;
    color: #007bff;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
    min-width: 120px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.days-nav .days a.active {
    font-weight: bold;
    color: white;
    background-color: #007bff;
}
.days-nav .days a:hover {
    background-color: #007bff;
    color: white;
}
.days a {
    display: inline-block;
}
@media (max-width: 600px) {
    .days-nav .days a {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 80px;
    }
    .days-nav .arrow {
        font-size: 28px;
    }
}
@media (max-width: 600px) {
    .days a:nth-child(1) {
        display: none;
    }
}
.form-controls {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.form-controls label {
    margin-right: 5px;
}
.form-controls input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 60px;
}
.form-controls button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.form-controls button:hover {
    background-color: #0056b3;
}
.results {
    background-image: url("./nice.jpg");
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 15px;
}
.song {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    border-left: 5px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, border-color 0.3s;
}
.song:hover {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: #007bff;
}
.cover-art {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    margin-right: 10px;
    transition: background-color 0.3s, transform 0.3s;
}
.details {
    flex-grow: 1;
    font-size: 14px;
}
.details strong {
    font-size: 15px;
}
.details time {
    font-size: 12px;
}
.play-container {
    display: flex;
    align-items: center;
}
.progress-circle {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#007bff 0%, transparent 0%);
}
.play-button {
    position: relative;
    z-index: 1;
    background-color: white;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.play-button:hover {
    background-color: #f0f0f0;
    transform: scale(1.1);
}
input::placeholder {
    color: white;
    opacity: 1;
}
.form-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form-controls .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.form-controls .form-group label {
    color: black;
}
.form-controls .form-group input {
    text-align: center;
    width: 60px;
}
.form-controls .btn-submit {
    margin-left: 10px;
    padding: 10px 20px;
}
.form-controls .search-bar {
    margin-top: 20px;
    padding: 15px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@media (max-width: 600px) {
    .form-controls .form-group {
        flex-direction: column;
        gap: 5px;
    }
    .form-controls label {
        margin-bottom: 5px;
    }
    .form-controls input {
        width: 100%;
    }
    .btn-submit {
        width: 100%;
        margin-top: 10px;
    }
    .search-bar {
        width: 100%;
    }
}
