/**
 * My Playlist Public CSS
 */

/* Container */
.my-playlist-container {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    max-width: 100%;
    margin: 0 auto;
    color: #333;
    --primary-color: var(--my-playlist-primary-color, #3498db);
    --primary-color-light: var(--my-playlist-primary-color-light, #54a9e2);
    --primary-color-dark: var(--my-playlist-primary-color-dark, #2980b9);
    position: relative;
}

/* MasaÃƒÂ¼stÃƒÂ¼/Mobil gÃƒÂ¶rÃƒÂ¼nÃƒÂ¼m yardÃ„Â±mcÃ„Â±larÃ„Â± */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

/* Header */
.my-playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
	margin-top: 30px;
    position: relative;
}

.my-playlist-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.liked-count {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 5px;
    color: #666;
}

.liked-count svg {
    color: #e74c3c;
}

.quote-button {
  background: var(--white-10);
  gap: 0.5rem;
  background-color: #10b981;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 6px;
}

.modal-teklif-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background-color: #10b981;
	margin-right: 5px;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.modal-teklif-button.hidden {
    display: none;
}

.quote-button:hover, .modal-teklif-button:hover {
    background-color: #0d9669;
}

.quote-button .badge, .modal-teklif-button .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background-color: white;
    color: #10b981;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Desktop gÃ¶rÃ¼nÃ¼mÃ¼nde teklif al butonu */
@media (min-width: 769px) {
    
    
    .modal-teklif-button {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
    }
}

/* Playlists Grid */
.playlists-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.playlist-section {
    flex: 1;
    min-width: 300px;
}

#fav-count {
    margin-left: -200px;
}

.section-header h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
}

/* Tabs (for dual playlist in mobile) */
.my-playlist-tabs {
    display: flex;
    margin-bottom: 15px;
    /* border-bottom: 1px solid #e1e1e1; */
}

.tab-button {
    padding: 8px 15px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #fff;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    font-weight: 500;
}

.tab-button:hover:not(.active) {
    color: #333;
    background-color: #f5f5f5;
}

.my-playlist-section {
    display: none;
}

.my-playlist-section.active {
    display: block;
}

/* Tracks table */
.tracks-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.tracks-table tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s;
}

.tracks-table tr:hover {
    background-color: #f9f9f9;
}

.tracks-table td {
    padding: 12px 8px;
    vertical-align: middle;
}

/* Flag cell */
.flag-cell {
    width: 50px;
}

.flag-container {
    width: 32px;
    height: 24px;
    overflow: hidden;
    border-radius: 3px;
}

.flag-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Info cell */
.info-cell {
    width: 30%;
}

.track-info {
    display: flex;
    flex-direction: column;
    min-height: 32px;
    justify-content: center;
}

.track-name {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
    color: white !important;
    min-height: 24px;
    line-height: 1.3;
}

.verify-icon {
    width: 18px;
    height: 18px;
    color: #1DA1F2;
    margin-left: 4px;
    vertical-align: middle;
    display: inline-block;
    flex-shrink: 0;
}

.group {
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    padding: 5px 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.2s;
}

.group:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.track-language {
    font-size: 0.8rem;
    color: #666;
    margin-top: 3px;
}

/* Controls cell */
.controls-cell {
    width: 50%;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    padding: 0;
    color: white;
}

.play-button:hover {
    /* background-color: var(--primary-color-dark); */
}

.play-button.playing svg {
    display: none;
}

.play-button.playing::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 2px;
}

.progress-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.time {
    font-size: 0.8rem;
    color: #666;
    flex-shrink: 0;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background-color: #e1e1e1;
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.volume-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.volume-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.volume-button:hover {
    color: #333;
}

.volume-slider {
    width: 60px;
}

/* Actions cell */
.actions-cell {
    width: 70px;
    text-align: center;
}

.track-actions {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.action-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
}

.action-button:hover {
    color: #333;
}

.action-button.liked {
    color: #e74c3c;
}

.action-button.quote {
    color: var(--primary-color);
}

/* Modal */
.my-playlist-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.my-playlist-modal.active {
    display: flex;
}

.my-playlist-modal.show {
    display: flex;
}

/* Modal aÃ§Ä±ldÄ±ÄŸÄ±nda animasyon */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-playlist-modal.show .modal-content {
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background-color: #1e2638;
    margin: 0 auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    color: white;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.close-button {
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    color: #999;
}

.favorite-count {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-all-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.9rem;
    cursor: pointer;
}

.clear-all-button:hover {
    background-color: #c0392b;
}

.favorite-tracks {
    /* margin-bottom: 20px; */
    max-height: 300px;
    overflow-y: auto;
}

/* Favori sesleri vurgulama efekti */
@keyframes highlightFavorites {
    0% { box-shadow: 0 0 0 2px rgba(99, 102, 241, 0); }
    50% { box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.5); }
    100% { box-shadow: 0 0 0 2px rgba(99, 102, 241, 0); }
}

.highlight-section {
    animation: highlightFavorites 1.5s ease-in-out;
    border-radius: 8px;
}

.favorite-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    max-height: 300px!important;
    border-bottom: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin: 10px 0px 10px 0px;
}

.favorite-track:last-child {
    border-bottom: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.favorite-track-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.favorite-track-flag {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    overflow: hidden;
    border-radius: 9999px;
    height: 2.5rem;
    width: 2.5rem;
}

.favorite-track-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-track-details span {
    display: block;
}

.favorite-track-name {
    font-weight: 500;
    color:white;
}

.favorite-track-language {
    font-size: 0.8rem;
    color: #fff;
}

.favorite-track-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.favorite-play-button {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.favorite-play-button:hover {
    background: var(--primary-color-dark);
}

.favorite-play-button.playing {
    background: var(--primary-color);
    color: white;
}

.favorite-play-button.playing svg {
    display: none;
}

.favorite-play-button.playing::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 2px;
}

.share-section {
    border-top: 1px solid #eee;
    /* padding-top: 15px; */
}

.share-link {
    margin-bottom: 15px;
}

.link-container {
    display: flex;
    gap: 5px;
}

.link-container input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.copy-button {
    background-color: rgb(99, 102, 241);
    color: white;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    padding: 0px 15px;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background-color: rgb(79, 83, 214);
}

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

@keyframes copySuccess {
    0% {
        background-color: rgb(99, 102, 241);
    }
    50% {
        background-color: rgb(16, 185, 129);
    }
    100% {
        background-color: rgb(99, 102, 241);
    }
}

.copy-button.copied {
    animation: copySuccess 2s ease;
}

/* Kopyalama iÃ§in geÃ§ici textarea */
textarea.temp-copy-textarea {
    position: absolute;
    left: -9999px;
    top: 0;
    opacity: 0;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.share-buttons p {
    margin-bottom: 10px;
}

.buttons-container {
    display: flex;
    margin-bottom: 15px;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    flex: 1 1 0%;
    /* padding: 10px; */
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    gap: 5px;
}

.buttons-container .quote-button {
    position: static;
    background-color: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    flex: 1 1 0%;
    padding: 10px;
    border-radius: 6px;
    margin: 0;
}

.email-share{
    background-color: rgb(99, 102, 241);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    flex: 1 1 0%;
    padding: 10px;
    border-radius: 6px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    gap: 5px;
}
.whatsapp-share {
    background-color: rgb(37, 211, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 14px;
    flex: 1 1 0%;
    padding: 10px;
    border-radius: 6px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    gap: 5px;
}

.whatsapp-share:hover, .email-share:hover {
    transform: scale(1.1);
}

    

/* Responsive styles */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .playlists-grid {
        display: block;
    }
    
    .playlist-section {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .my-playlist-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .info-cell {
        width: 30%;
    }
    
    .controls-cell {
        width: 45%;
    }
    
    .volume-controls {
        display: none;
    }
}


:root {

  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-80: rgba(255, 255, 255, 0.8);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, var(--bg-gradient-from), var(--bg-gradient-to));
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.playlist-container, .playlist-section {
  rgba(62, 42, 137, 1);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  border: 1px solid var(--white-10);
  padding: 1.5rem;
}

.playlist-header, .dual-playlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.liked-count {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  margin-right: 150px;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: 0.5rem;
  color: var(--white-80);
  font-size: 0.875rem;
}



.quote-button:hover {
  /* background: var(--primary-hover); */
}

.badge {
  background: var(--white-20);
  border-radius: 9999px;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.track-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

.track-row:hover {
  background: var(--white-10);
}

.flag-container {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--white-10);
}

.flag-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.track-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.track-name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.track-language {
  font-size: 0.75rem;
  color: var(--white-60);
}

.verify-icon {
  width: 18px;
  height: 18px;
  color: #1DA1F2;
  margin-left: 4px;
  vertical-align: middle;
  display: inline-block;
  flex-shrink: 0;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

button.action-button.like-button.liked svg {
    fill: #ec4899!important;
}

.bg-blue-500 {
    --tw-bg-opacity: 1;
    background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}

.rounded-full {
    border-radius: 9999px;
}
.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.w-4 {
    width: 1rem;
}
.h-4 {
    height: 1rem;
}
.play-button {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--white-10); */
  border: none;
  /* color: var(--white-60); */
  cursor: pointer;
  transition: all 0.2s;
}

.play-button:hover {
  /* background: var(--white-20); */
  color: white;
}

.play-button.playing {
  background: var(--primary-color);
  color: white;
}

.progress-container {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.time {
  font-size: 0.75rem;
  color: var(--white-60);
  width: 2.5rem;
  text-align: center;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--white-20);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress {
  height: 100%;
  background-color: var(--primary-color);
  width: 0;
  transition: width 0.1s;
}

.volume-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volume-button {
  background: none;
  border: none;
  color: var(--white-60);
  cursor: pointer;
  padding: 0.25rem;
}

.volume-button:hover {
  color: white;
}

.volume-slider {
  width: 4rem;
  height: 4px;
  -webkit-appearance: none;
  background: var(--white-20);
  border-radius: 2px;
  outline: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  cursor: pointer;
  border: 2px solid var(--primary-color);
}

.track-actions {
  display: flex;
  gap: 0.5rem;
}

.action-button {
  padding: 0.4rem;
  border-radius: 0.5rem;
  background: var(--white-10);
  border: 1px solid var(--white-20);
  color: var(--white-60);
  cursor: pointer;
  transition: all 0.2s;
  transform-origin: center;
}

.action-button:hover {
  background: var(--white-20);
  color: white;
}

.action-button.liked {
  /* background: rgba(236, 72, 153, 0.2); */
  color: #f472b6;
  /* border-color: rgba(236, 72, 153, 0.3); */
  transform: scale(0.9);
}

.action-button.quote {
  background: var(--primary-color);
  color: white;
  border-color: rgba(99, 102, 241, 0.3);
}

.action-button.quote:hover {
  background: var(--primary-hover);
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: rgb(30, 41, 59);
    color: white;
    max-width: 500px;
    width: 95%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
    z-index: 10000;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.75rem;
  margin-bottom: 1rem;
}

.close-button {
  background: none;
  border: none;
  color: var(--white-60);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.close-button:hover {
  color: white;
}

.favorite-count {
  color: var(--white-80);
  /* margin-bottom: 1rem; */
}

.favorite-tracks {
  max-height: 245px;
  /* overflow-y: auto; */
  /* margin-bottom: 1.5rem; */
}

.share-section {
  border-top: 1px solid rgb(255 255 255 / 0%);
  /* padding-top: 1rem; */
}

.share-link p {
  color:white;
}

.share-link {
  margin-bottom: 1.5rem;
}

.link-container {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.link-container input {
  flex: 1;
  background: none;
  border: none;
  color: var(--white-80);
  font-size: 0.875rem;
  outline: none;
}

.share-buttons p {
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.75rem;
}

.buttons-container {
  display: flex;
  margin-bottom: 15px;
  width: 100%;
  /* gap: 10px; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  font-size: 14px;
  flex: 1 1 0%;
  padding-top: 10px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  /* gap: 5px; */
}
@media (max-width: 425px) {
.my-playlist-container {
		padding-top: 15px!important;
	}
	    #fav-count {
        margin-left: -100px;
    }
}
/* Dekstop/Mobile gÃƒÂ¶rÃƒÂ¼nÃƒÂ¼m yardÃ„Â±mcÃ„Â±larÃ„Â± */
@media (max-width: 768px) {
  .playlists-grid {
    display: block;
  }
	.my-playlist-container {
		padding-top: 5px;
	}
  .playlist-section {
    margin-bottom: 1rem;
  }

  .mobile-only {
    display: flex;
    background: var(--white-10);
    /* border-radius: 0.5rem; */
    padding: 0.25rem;
    margin-bottom: 1rem;
  }
  
  .desktop-only {
    display: none;
  }

  .tab-button {
    flex: 1;
    padding: 0.5rem;
    border: none;
    border-radius: 0.375rem;
    background: none;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }

  .tab-button.active {
    background: var(--primary-color);
    color: white;
  }

  .volume-controls {
    display: none;
  }

  .track-row.playing .progress-container {
    display: flex;
    margin-top: 0.5rem;
  }
  
  .my-playlist-section {
    display: none;
  }
  
  .my-playlist-section.active {
    display: block;
  }
  
  /* Modal mobil optimizasyonu */
  .modal-content {
    width: 95%;
    max-height: 85vh;
    margin: 0;
  }
  
	.whatsapp-share {
	    font-size:11px;
	}
	.email-share {
	    font-size:11px;
	}
	.buttons-container .quote-button {
	 font-size:11px;
	}
	.buttons-container button {
	 gap:6px;
	}
}

@media only screen 
  and (min-device-width: 430px) 
  and (max-device-width: 430px)
  and (orientation: portrait) 
  and (-webkit-device-pixel-ratio: 3) {
  .modal-content {
	    top:40px;
	}
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }

  .playlists-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
    #fav-count {
    margin-left: -190px;
    }
  
  .my-playlist-header .quote-button, 
  .my-playlist-header .modal-teklif-button {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0;
  }
  
  .my-playlist-section {
    display: block;
  }
  
  .dual-playlist .my-playlist-section {
    display: block;
  }
}

/* Add new table styles */
.tracks-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.tracks-table tr {
  background: var(--white-10);
  transition: background-color 0.2s;
}

.tracks-table tr:hover {
  background: var(--white-20);
}

.tracks-table td {
  padding: 12px 8px;
  vertical-align: middle;
}

.tracks-table td:first-child {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.tracks-table td:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.tracks-table .flag-cell {
  width: 48px;
}

.tracks-table .info-cell {
  min-width: 160px;
}

.tracks-table .controls-cell {
  width: 100%;
}

.tracks-table .actions-cell {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .tracks-table .controls-cell {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .tracks-table .progress-container {
    margin-top: 0.5rem;
  }
  
 
}

.cizgi {
    border-top: 1px solid var(--white-10);
    padding-top: 1rem;
}
.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.btn-close {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    border-radius: 8px;
    padding: 12px;
}

@media (max-width: 767px) {
    .play-button {
		margin-top: 5px;
	}
	.track-name{
		gap: 2px !important;
		min-height: 20px;
		font-size: 16px;
	}
	
	
	
	.verify-icon {
	    width: 16px;
	    height: 16px;
	    margin-left: 3px;
	}
	
	#fav-count {
    margin-left: -100px;
    }
}

@media (max-width: 375px) {
    
	
	#fav-count {
    margin-left: -50px;
    }
}