/* Styles for the Account Management Interface */
/* Styles for the Billing Interface */
.app-header {
    width: 100%;
    padding: 10px 20px;
    background-color: var(--card-background);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    top: 0;
    box-shadow: none !important; /* Ensure no box-shadow */
    left: 0;
    z-index: 1000;
}

.mdl-layout__header {
    box-shadow: none !important;
}

.app-header .user-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.app-header .user-icons .material-symbols-outlined {
    font-size: 48px !important; /* Account and Paid icons size */
}


.material-symbols-outlined {
    cursor: pointer;
    color: #ffffff; /* White color for icons */
    transition: color 0.3s;
}

.material-symbols-outlined:hover {
    color: #cccccc; /* Light gray for hover */
}

.material-symbols-outlined.buffering {
    color: #cccccc; /* Same as hover for buffering state */
}

.material-symbols-outlined.disabled {
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile message styling */
.mobile-message {
    color: #ffffff; /* White text to match the design */
    text-align: center;
    font-size: 24px !important;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}
/* Styles for the Login Interface */
/* Styles for the Music Player Interface */
body {
    font-family: 'Roboto', sans-serif; /* Material Design font */
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #AA6DC7, #6767C2, #149183);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure body takes full viewport height */
    transition: background-color 0.3s, color 0.3s;
    filter: grayscale(100%); /* Apply grayscale to the entire site */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}


main {
    padding: 20px;
    width: 100%; /* Take full width */
    max-width: 800px;
    background-color: var(--card-background);
    border-radius: 8px;
    box-shadow: none !important; /* Ensure no box-shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1; /* Allow main to grow and take available space */
    transition: background-color 0.3s;
}

.mdl-layout__content {
    box-shadow: none !important;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between icons */
    margin-top: 20px; /* Adjust as needed */
}


.player-controls .material-symbols-outlined {
    font-size: 96px; /* Player icons size */
}

.user-icons .material-symbols-outlined {
    font-size: 48px; /* Account and Paid icons size */
}


.material-symbols-outlined:hover {
    color: #cccccc; /* Light gray for hover */
}

.login-card {
    max-width: 400px; /* Set a max-width for the login card */
    width: 90%; /* Make it responsive */
    margin: auto; /* Center the card horizontally and vertically within the flex container */
    box-shadow: none !important;
}

.mdl-card {
    box-shadow: none !important;
}
