/* Modernized Create Section */
.create-section {
    padding: 4rem 2rem;
    /* More vertical padding */
    background-color: #f8f8f8;
    /* Light background to make it stand out */
    border-top: 1px solid #eee;
    /* Subtle separator */
    text-align: center;
    /* Center content within the section */
}

.create-one {
    /* Removed background from here, now handled by .create-section */
    padding: 0;
    /* Reset padding if any inherited */
}

.create-section .btn.btn-primary {
    display: inline-block;
    /* Ensure button respects padding/margin */
    padding: 0.6rem 2.5rem;
    /* Generous padding for a larger button */
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    /* Make text uppercase */
    letter-spacing: 1px;
    border-radius: 10px;
    /* Pill-shaped button */
    background-color: #007bff;
    /* A modern green */
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Soft shadow */
    transition: all 0.3s ease;
    /* Smooth transitions for hover effects */
    text-decoration: none;
    /* Remove underline */
}

.create-section .btn.btn-primary:hover {
    background-color: #0056b3;
    /* Darker green on hover */
    transform: translateY(-3px);
    /* Lift effect on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow on hover */
}

.create-section .btn.btn-primary .fas.fa-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    /* Size of the circle */
    height: 24px;
    /* Size of the circle */
    border-radius: 50%;
    background-color: #e0f2ff;
    /* Lighter blue background */
    color: #007bff;
    /* Icon color, matching button primary color */
    margin-right: 8px;
    /* Space between icon and text */
    font-size: 0.8em;
    /* Adjust icon size relative to button text */
}

/* Music Toggle Button */
.music-toggle-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.music-toggle-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.music-toggle-button.playing {
    background-color: #e74c3c;
}