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

.card {
  margin-bottom: 20px;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
}

.table {
  margin-bottom: 20px;
}

.table th, .table td {
  padding: 1px;
  vertical-align: middle;
  border-top: 1px solid #ddd;
background-color: #e5e5e5;
}
.modal img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.social-handle li {
    margin-right: 10px;
}

.social-handle svg {
    width: 28px;
    height: 33px;
	    margin-top: -14px !important;
    
}
.svg tiktok-handle {
    width: 28px;
    height: 33px;
	    margin-top: -14px !important;
    
}
@media (min-width: 280px) and (max-width: 280px) {
.social-handle svg {
    width: 28px;
    height: 33px;
    margin-top: 9px !important;
}
}
.notification.unread {
    background-color: #eef;
    font-weight: bold;
}
#producerLicenseModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    z-index: 1000;
}

#producerLicenseModal .producer-license-modal-content {
    background-color: #fff;
    width: 80%;
    max-width: 600px;
    height: 500px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

#producerLicenseModal .producer-license-close-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #producerLicenseModal .producer-license-modal-content {
        width: 90%;
        padding: 15px;
    }
}
#follow-button, #message-producer-btn {
    margin-top: 10px;
    margin-right: 10px;
}
#custom-message-modal {
    --move-x: 0px; /* Adjust horizontal position */
    --move-y: 0px; /* Adjust vertical position */
	z-index: 1060;
}

#custom-message-modal .modal-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(var(--move-x), var(--move-y));
    margin: 0;
    width: 90vw; /* Responsive width */
    max-width: 600px; /* Max width for larger screens */
    max-height: 90vh; /* Responsive max-height */
    overflow-y: auto; /* Allow scrolling if content overflows */
}

#custom-message-modal .modal-content {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
}

#edit-form-card {
  display: none;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  margin: auto;
  font-family: Arial, sans-serif;
}

#edit-form-card label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#edit-form-card input[type="text"],
#edit-form-card input[type="number"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

#edit-form-card button[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

#edit-form-card button[type="submit"]:hover {
  background-color: #45a049;
}

#edit-form-card button#close-edit-form {
  background-color: #f44336;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#edit-form-card button#close-edit-form:hover {
  background-color: #e53935;
}
div {
}
.profile-header {
--gradient-start: #02bf9808;
    --gradient-end: #091a12;
  background-image: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.profile-header .artist-profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-right: 20px;
  object-fit: cover;
}

.profile-header .artist-name {
    color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile-header .artist-bio {
  font-size: 16px;
  color: #fff;
}



.music-cover {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.music-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.music-description {
  font-size: 16px;
  color: #666;
}

.artist-albums {
  padding: 20px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

.album-item {
  background-color: #f7f7f7;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.album-cover {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px
}
.album-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}

.artist-albums .album-grid .album-item .album-cover {
width: 100%;
height: 150px;
object-fit: cover;
border-radius: 10px 10px 0 0;
}

.artist-albums .album-grid .album-item .album-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}

.artist-albums .album-grid .album-item .album-description {
font-size: 16px;
color: #666;
}

.artist-albums .album-grid .album-item:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
transform: translateY(-5px);
}

.artist-albums .album-grid .album-item:hover .album-title {
color: #333;
}

.artist-albums .album-grid .album-item:hover .album-description {
color: #666;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1000;
}

.modal-content {
  position: relative;
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
}

.modal-content .close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
.purchases-card {
  padding: 2px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.purchases-card table {
  width: 100%;
  border-collapse: collapse;
}

.purchases-card th, .purchases-card td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  text-align: left;
}

.purchases-card .view-license, .purchases-card .download-license {
  margin: 0 5px;
  padding: 5px 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
	padding: 10px;
}
.purchases-card .view-license {
  background-color: #15411f;
  color: white;
}

.purchases-card .download-license {
  background-color: #15411f;
  color: white;
}
/* Responsive Design */

@media (max-width: 768px) {
.artist-header {
padding: 10px;
}

.artist-profile-picture {
width: 50px;
height: 50px;
}

.artist-name {
font-size: 18px;
}

.artist-bio {
font-size: 14px;
}

.music-grid {
grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .form-control {
        width: 100%;
        box-sizing: border-box;
    }
    .card-body {
        padding: 10px;
    }
    .form-check {
        margin-right: 5px;
    }
}
.album-grid {
grid-template-columns: repeat(2, 1fr);
}
}
.post-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.post-modal .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 798px;
        max-height: 70vh;
    overflow-y: auto;
}

.post-modal .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

#producer-beats-container {
    height: 474px !important;
    overflow-y: auto;
    padding: 10px;
   
    border-radius: 8px; /* Rounded corners */
}

#producer-beats-container ul {
    list-style-type: none; /* Remove list markers (dots) */
    padding: 0;
    margin: 0;
}

#producer-beats-container .music-item:hover {
    background-color: #444; /* Hover effect */
}
@media (max-width: 480px) {
.artist-header {
padding: 5px;
}

.artist-profile-picture {
width: 60px;
height: 60px;
}

.artist-name {
font-size: 20px;
}

.artist-bio {
font-size: 15px;
}

.music-grid {
grid-template-columns: repeat(1, 1fr);
}

.album-grid {
grid-template-columns: repeat(1, 1fr);
}
}



