* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

#base-body {
    background: linear-gradient(to bottom, #ffffff, #fafafa);
    border-radius: 8px;
}


.content-container {
    max-width: 950px;
    margin: auto;
    justify-content: left;
}

main {
    position: relative;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
}

.banner {
    color: darkgrey;
    background-color: #fbfbfb;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    padding: .8em 0em;
}

.icon-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    list-style-type: none;
    box-sizing: border-box;
}

#hamburger {
    display: none;
}

.ShownOnMobile {
    display: none;
}

.icon-menu li a {
    background-color: #FFFFFF;
    font-weight: bold;
    padding: .5em;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    color: #1DB954;
    border:  1px solid transparent;
    border-right-color: #1DB954;
}

.icon-menu li:last-child a {
    border-right-color: transparent;
}

.icon-menu li:hover a {
    border: 1px solid #1DB954; /* Spotify green border */
    background: rgba(38, 255, 116, 0.17)
}

.icon-menu li:focus a, .icon-menu li:active a {
    border: 1px solid black;
    background: rgba(20, 236, 89, 0.33)
}

.icon-section-left {
    margin-left: .4em;
    margin-right: auto;
}

#hamburger .icon-menu {
    background: white;
    flex-direction: column;
    padding: 0;
    align-items: flex-start;
    box-shadow: 0 .375rem .4375rem rgba(0,0,0,.1),0 .625rem 1.75rem rgba(0,0,0,.25);
}

#hamburger .icon-menu li {
    width: 100%;
    margin: 0;
}

#hamburger .icon-menu li a {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid green;
    border-radius: unset;
}

/*Index Page Styling*/
.flex-container {
    display: flex;
    gap: 1em;
}

.vert-center {
    height: calc(100vh - 12em);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.promo-section {
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: flex-start;
    justify-content: left;
    padding: 60px 20px;
    text-align: left;
    border-radius: 10px;
}

.promo-content {
    margin-top: 1em;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000000; /* Black text for contrast */
    margin-bottom: 20px;
}

.promo-description {
    font-size: 1.2rem;
    color: #333333; /* Slightly lighter black for secondary text */
    margin-bottom: 30px;
}

.promo-button {
    display: inline-block;
    background-color: #38a169; /* Vibrant green for the button */
    color: #ffffff; /* White text for contrast */
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.promo-button:hover {
    background-color: #2f855a; /* Darker green for hover */
    transform: translateY(-2px); /* Subtle lift effect */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#meet-the-team {
    background-color: #f0f0f5; /* Light background for contrast */
    padding: 50px 20px;
    margin: 30px auto;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(100% - 3em);
}

.team-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
}

/* Team Container Styling */
.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
}

/* Individual Team Member Card */
.team-member {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    max-width: 250px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.team-image {
    width: 120px; /* Reasonable width for images */
    height: 120px; /* Maintain square aspect ratio */
    object-fit: cover; /* Ensures no distortion */
    border-radius: 50%; /* Circular images */
    margin-bottom: 15px;
    border: 3px solid #ddd;
}

/* General styling for the Contact Us section */
.IndexAboutInfo {
    background-color: #f9f1fd; /* Light purple background */
    border-radius: 8px; /* Rounded corners */
    padding: 16px; /* Padding for inner spacing */
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%; /* Optional: limit the width */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow for depth */
    margin-bottom: 32px; /* 2-line space between items */
}

.IndexAboutInfo h3 {
    font-size: 18px; /* Adjust font size */
    margin: 0 0 4px 0; /* Bottom margin only for spacing */
    color: #333; /* Text color */
}

.IndexAboutInfo p {
    font-size: 14px;
    color: #555; /* Slightly darker text */
    margin: 0; /* Remove extra margins */
}

.IndexAboutInfo img {
    width: 20px; /* Set width for checkmark */
    height: 20px; /* Set height for checkmark */
    align-self: center; /* Align checkmark vertically */
}

#Index-main-text {
    padding-bottom: 1em;
    justify-content: center;
}
.index-page-albums {
    display: none;
}
.index-page-albums-mobile {
    display: block;
}

.text-container {
    display: flex;
    flex-direction: column;
}


.contact-us-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-us-container h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #4a4a4a;
    margin-bottom: 15px;
}

.contact-us-form input,
.contact-us-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-us-form textarea {
    resize: none;
    min-height: 100px;
}

.contact-us-form .btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.contact-us-form .btn:hover {
    background-color: #45a049;
}

.messages {
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    text-align: center;
}

.messages li {
    color: #4caf50;
    font-size: 1rem;
}

/* login form*/
.authForm {
    width: 300px;
    padding: 20px;
    border: 2px solid #B488F2;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    background-color: #FFFFFF;
}

.authForm label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.authForm input[type="email"],
.authForm input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
}


.authForm button {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.authForm button:hover {
    background-color: #555;
}

.authForm a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #B488F2;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.authForm a:hover {
    color: #A268DB;
}

.form-errors {
    color: #ff4d4d; /* Red color for errors */
    font-size: 14px;
    margin-bottom: 10px;
}

.error-message {
    margin: 5px 0;
}

.authForm .form-errors {
    margin-bottom: 15px; /* Space between the errors and the form */
}

.authForm label {
    display: block;
    margin-top: 10px;
}

.authForm input, .authForm button {
    margin-top: 5px;
}

.login-alternate {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
}

.login-alternate p {
    margin: 10px 0;
    font-size: 14px;
    color: #333;
}

.spotify-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: #1DB954;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease;
}

.spotify-login:hover {
    background-color: #1AA34A;
}

.spotify-icon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

/* styles for the profile page*/
table.linked-tokens {
    border-collapse: collapse;
    width: 100%;
    background-color: white; /* Background for rows */
    border-radius: 10px; /* Rounded corners for the table */
    overflow: hidden; /* Ensures corners apply properly */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 1em;
}

.table-overflow-container {
    overflow-x: auto;
}

h2.pf-page-heading {
    margin-bottom: 1em;
}

.spotify-account-box {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

/* Table header styling */

.linked-tokens tr:first-child th {
  background-color: #1DB954;
  color: black;
  padding: 10px;
  text-align: left;
  font-weight: bold;
  border: none;
}

.linked-tokens th {
  background-color: white;
  color: black;
  text-align: left;
  padding: 10px;
  font-weight: bold;
}

.linked-tokens td {
  border: none;
  padding: 10px;
  color: black;
  background-color: white;
}

.linked-tokens tr:hover td {
  background-color: #f5f5f5;
}

.linked-tokens tr:nth-child(even) td {
  background-color: #f9f9f9;
}

.linked-tokens button {
  background-color: #1DB954;
  color: white;
  border: none;
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.linked-tokens button:hover {
  background-color: #14863E;
}

.linked-tokens button:active {
  transform: scale(0.95);
}

a.DeleteAccount {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #bc2775;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    border: 2px solid #bc2775;
    transition: background-color 0.3s, transform 0.2s;
    position: relative;
    margin-left: auto;
}

a.DeleteAccount:hover {
    background-color: #bc2775;
    transform: scale(1.05);
    cursor: pointer;
}

.button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

a.DeleteAccount:active {
    transform: scale(0.95);
}

a.LinkSpotify {
    display: inline-block;
    padding: 10px 20px;
    color: white;
    background-color: #1DB954;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    border: 2px solid #1AA34A;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 1em;
}

a.LinkSpotify:hover {
    background-color: #1AA34A;
    transform: scale(1.05);
    cursor: pointer;
}

a.LinkSpotify:active {
    transform: scale(0.95);
}

.no-wraps {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.wrap {
    background-color: white;
    border: 1px solid #1DB954;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.wrap:hover {
    transform: scale(1.02);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.wrap h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: black;
}

.wrap a {
    display: inline-block;
    color: #1DB954;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.wrap a:hover {
    color: #14863E;
}

.wrap p {
    color: black;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.wrap-buttons {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-top: 10px; /* Add some spacing above the buttons */
}

.wrap-buttons form {
    margin: 0;
}

.wrap-buttons button {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.wrap-buttons button:hover {
    background-color: #e9ecef;
    border-color: #bbb;
}

.wrap-buttons .like-button {
    color: #007bff;
}

.wrap-buttons .delete-button {
    color: #dc3545;
}

.wrap-buttons .post-button {
    color: #28a745;
}

@media (max-width: 768px) {
    main {
        padding-right: unset;
    }
    .side-image {
        width: 100%;
        height: 4em;
        margin-top: 1em;
        bottom: 0;
        top: unset;
    }
    .HiddenOnMobile {
        display: none;
    }
    .ShownOnMobile {
        display: block;
    }

    .team-container {
        flex-direction: column;
    }
    .team-member {
        width: 90%;
        margin: 0 auto;
    }
    .promo-section{
        padding-top: 0;
    }

    /*Contact Us Styling*/
    .contact-us-container {
        padding: 15px;
        margin: 10px;
    }

    .contact-us-container h2 {
        font-size: 1.5rem;
    }

    .contact-us-form input,
    .contact-us-form textarea {
        font-size: 0.9rem;
    }

    .contact-us-form .btn {
        font-size: 1rem;
        padding: 8px 15px;
    }
    h1.pf-page-heading {
        font-size: x-large;
    }
}

/* Share buttons */
.share-container {
    margin-left: auto;
}

.share-button {
    border-radius: .3em;
    padding: .3em;
    background: #f8f9fa;
    margin: 0;
    font-size: large;
}

.share-button:hover {
    background: #e3e3e4;
}

/* View public and liked wraps styling*/
.header-container {
    display: flex;
    align-items: center; /* Align items vertically */
    justify-content: space-between; /* Keep the button to the right */
    margin-bottom: 20px;
}

/* Text container to stack the heading and paragraph */
.text-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
}

/* Style the anchor tag like a Spotify button */
.spotify-button {
    background-color: #1DB954;
    color: black;
    border: none;
    border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Add hover effect */
.spotify-button:hover {
    background-color: #1ed760;
}

@media (min-width: 768px) {
    #hamburger {
        display: none !important;
    }
    .index-page-albums {
        display: block;
        min-width: 100px;
        height: unset !important;
    }
    .index-page-albums-mobile {
        display: none;
    }
}