body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;

}

.content {
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    display: flex;
    flex-direction: row;
    padding-bottom: 50px;
}

.left-side {
    width: 20vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}


/* Artist Card */
.artist-card {
    background-color: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.artist-image-container {
    margin-bottom: 20px;
    text-align: center;
}

.artist-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

.artist-details {
    text-align: left;
}


/* Right Side */
.right-side {
    width: 80vw;
    padding-left: 30px;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

#navLinks {
    display: flex;
    flex-direction: row;
}

#navLinks li {
    list-style: none;
}

/* Image Section */
#artistFilterSection{
    padding-bottom: 15px;
}
.artists-title {
    margin-top: 0px;
}

.image-section {
    background-color: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.gallery-image {
    height: 200px;
    margin: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.1);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
}

.modal-content {
    display: block;
    margin: auto;
    width: 80vh;
}

.close {
    color: white;
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.search-section {
    padding-bottom: 15px;
}

input[type="text"],
button {
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 300px;
    font-size: 16px;
}

button {
    width: 150px;
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4cae4c;
}
.dropdown {
    display: flex;
    justify-content: center;
    padding-bottom: 5px;
}

/* Ensure the parent wrapper is positioned */
.input-wrapper {
    position: relative; /* This makes the suggestions align relative to this wrapper */
    width: 300px; /* Matches the input field width */
}

#artistName {
    width: 100%; /* Ensures the input stretches to the wrapper's width */
    box-sizing: border-box; /* Include padding and border in the element's width */
}

#suggestions {
    position: absolute; /* Position it below the input */
    top: 100%; /* Align just below the input */
    left: 0; /* Align with the left edge of the input */
    width: 100%; /* Match the width of the input field */
    border: 1px solid #ccc;
    max-height: 200px; /* Restrict height to make it scrollable */
    overflow-y: auto; /* Enable vertical scrolling */
    background-color: white;
    z-index: 1000; /* Ensure it appears above other elements */
    display: none; /* Initially hidden */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for better visibility */
    border-radius: 4px; /* Rounded corners */
}

#suggestions div {
    padding: 10px;
    cursor: pointer;
}

#suggestions div:hover {
    background-color: #f0f0f0;
}