:root {
  --text: #e6edf3;
  --muted: #abb4c0;
  --border-color: rgba(255, 255, 255, 0.15);
  --primary-bg: #161b22;
  --main-bg: #0d1117;
  --accent-color: #38bdf8;
  --panel-bg: #1a1a1a;
}

body {
  background: var(--main-bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.page > .header {
  padding-top: 15px;
  padding-bottom: 15px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.profile-header-codepen {
  position: relative;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 25px;
  overflow: hidden;
  flex-wrap: wrap;
  background-color: var(--primary-bg);
  background-image: linear-gradient(
      rgba(13, 17, 23, 0.7),
      rgba(13, 17, 23, 0.7)
    ),
    url("https://images.unsplash.com/photo-1550063873-ab792590f822?auto=format&fit=crop&q=80&w=2070");
  background-size: cover;
  background-position: center;
}

.profile-avatar-section {
  margin-top: 0;
  flex-shrink: 0;
}

#profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.1);
  background-color: var(--main-bg);
  object-fit: cover;
}

.profile-info-section {
  flex-grow: 1;
}

#profile-username {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: #fff;
  margin: 0 0 5px 0;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);

  white-space: nowrap;
}

#profile-bio {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
  max-width: 600px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.social-links a {
  color: var(--muted);
  font-size: 1.5rem;
  transition: all 0.2s ease-in-out;
}
.social-links a:hover {
  color: var(--text);
  transform: translateY(-3px);
}

.profile-actions-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.profile-stats {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.profile-stats .stat {
  text-align: center;
  cursor: pointer;
  transition: color 0.2s;
}
.profile-stats .stat:hover {
  color: var(--text);
}
.profile-stats .stat strong {
  color: var(--text);
  font-size: 1.1rem;
  display: block;
}

.follow-btn {
  padding: 8px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.follow-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.follow-btn.following {
  background-color: var(--accent-color);
  color: var(--main-bg);
  border-color: var(--accent-color);
}
.follow-btn.hidden {
  display: none;
}

/* YENİ: Əsas content stilləri */
.profile-content {
  margin-top: 40px;
}
.content-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}
.content-tab-btn {
  padding: 10px 20px;
  border: none;
  background: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  position: relative;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.content-tab-btn:hover {
  color: var(--text);
}
.content-tab-btn.active {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  margin-bottom: -1px;
}
.content-panel {
  display: none;
}
.content-panel.active {
  display: block;
}
/* KÖHNƏ STILLƏRİN YENİ ADI */
#projects-content .projects-tabs {
  border-bottom: none;
  margin-bottom: 20px;
}
#projects-content .tab-btn {
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.9rem;
}
#projects-content .tab-btn.active {
  background-color: var(--accent-color);
  color: var(--primary-bg);
  border-color: var(--accent-color);
}
#projects-content .tab-btn.active::after {
  display: none; /* Köhnə alt xətti ləğv edirik */
}
/* YENİ BİTİR */

#projects-grid,
#reels-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2200;
  backdrop-filter: blur(5px);
}
.modal-overlay.hidden {
  display: none;
}
.modal-content {
  background: var(--primary-bg);
  border-radius: 8px;
  width: 90vw;
  max-width: 400px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
}
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}
.close-btn {
  background: none;
  border: none;
  color: #8b949e;
  font-size: 1.5rem;
  cursor: pointer;
}
.user-list {
  overflow-y: auto;
  padding: 10px 20px;
}
.user-list-item {
  display: flex;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  color: #c9d1d9;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.user-list-item:not(:last-child) {
  margin-bottom: 5px;
}
.user-list-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.user-list-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.modal-header {
  gap: 15px;
}

.modal-header h3 {
  white-space: nowrap;
}

#search-users-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: var(--main-bg);
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

#search-users-input:focus {
  border-color: var(--accent-color);
}
body.modal-open {
  overflow: hidden;
}

#image-modal {
  cursor: zoom-out;
}

.image-modal-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modal-image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  object-fit: contain;
}

#image-modal-close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--muted);
  transition: color 0.2s;
}

#image-modal-close-btn:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .profile-header-codepen {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .profile-actions-section {
    margin-left: 0;
    flex-direction: column;
    width: 100%;
  }
  .follow-btn {
    width: 100%;
  }
  #projects-grid,
  #reels-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

#load-more-container {
  text-align: center;
  margin-top: 30px;
}

.load-more-btn {
  padding: 10px 25px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.load-more-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== YENİ: REELS ÜÇÜN STILLƏR ===== */
#reels-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 350px;
}
.reel-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--primary-bg);
}
.reel-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.reel-thumbnail:hover .reel-thumbnail-overlay {
  opacity: 1;
}
.no-content-message {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}
/* Tam ekran Reels pəncərəsi */
#reels-viewer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#reels-viewer-overlay.hidden {
  display: none;
}
#reels-viewer-close-btn {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2010;
  font-size: 2rem;
  color: white;
  text-shadow: 0 0 5px black;
}
#reels-viewer-container {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
#reels-viewer-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
.reel-item {
  width: 100%;
  height: 100%;
  position: relative;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
}
.reel-video-frame {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.reel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding-bottom: 30px;
  pointer-events: none;
}
.reel-overlay > * {
  pointer-events: auto;
}
.reel-info {
  flex-grow: 1; /* Əlavə edildi */
  padding-right: 20px; /* Əlavə edildi */
  max-width: calc(100% - 60px); /* Dəyişdirildi */
}
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.user-details strong {
  font-size: 1rem;
  display: block;
}
.reel-description {
  line-height: 1.4;
  font-size: 0.9rem;
  word-break: break-all;
}
.reel-description .see-more-btn {
  font-weight: bold;
  cursor: pointer;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0 5px;
  display: inline;
}
.reel-actions {
  display: flex;
  flex-direction: column;
  gap: 25px; /* Dəyişdirildi */
  align-items: center; /* Əlavə edildi */
}
.action-button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  text-align: center;
}
.action-button span {
  font-size: 0.9rem;
  display: block;
  font-weight: 500;
}
.like-button.liked .fa-heart {
  color: #ff3b5c;
}

/* ===== YENİ ƏLAVƏ EDİLMİŞ REELS FUNKSİYA STILLƏRİ ===== */
.mute-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2.5rem;
  padding: 20px;
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
  animation: fadeOut 0.8s forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

.like-heart-animation {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  color: #ff2d55;
  font-size: 5rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%) scale(0);
}
.like-heart-animation.show-animation {
  animation: like-heart-animation 0.6s ease-in-out;
}
@keyframes like-heart-animation {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.5);
  }
  30% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  60% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.reel-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  transition: height 0.2s ease;
}
.reel-progress-bar:hover {
  height: 15px;
}
.progress-filled {
  height: 3px;
  background-color: #fff;
  pointer-events: none;
  transition: height 0.2s ease;
}
.reel-progress-bar:hover .progress-filled {
  height: 5px;
}

/* Rəylər Paneli Stilləri */
#comments-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 80vh;
  background-color: var(--primary-bg);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  z-index: 2020;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
}
#reels-viewer-overlay:not(.hidden) #comments-panel:not(.hidden) {
  transform: translateY(0);
}
.comments-panel-header {
  padding: 15px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-shrink: 0;
}
.comments-panel-header .close-btn {
  position: absolute;
  right: 15px;
}
.comments-panel-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 15px;
}
.comments-panel-footer {
  padding: 10px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.comments-panel-footer > .comment-input-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comments-panel-footer textarea {
  flex-grow: 1;
  background-color: var(--main-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 10px;
  color: var(--text);
  resize: none;
}
.comments-panel-footer button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
}
/* Digər Rəy Stilləri */
.comment-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.comment-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.comment-body strong {
  color: var(--text);
}
.comment-body p {
  color: var(--muted);
  margin: 5px 0;
  font-size: 0.95rem;
}
.comment-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.comment-meta button {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
}
.comment-meta .like-btn .liked {
  color: #ff3b5c;
}
.reply-to-info {
  display: none;
  background-color: #2c2c2c;
  color: var(--muted);
  font-size: 0.8rem;
  padding: 8px 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 5px;
}
.reply-to-info.visible {
  display: flex;
}
.cancel-reply {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}

#share-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2010;
  justify-content: center;
  align-items: flex-end;
  display: none; /* Başlanğıcda gizli olacaq */
}

#share-panel:not(.hidden) {
  display: flex; /* Yalnız 'hidden' klassı olmadıqda görünəcək */
}
.share-panel-content {
  background-color: var(--panel-bg);
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 60vh;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.share-panel-header {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.share-panel-body {
  padding: 10px 20px 20px;
  overflow-y: auto;
}
.share-section-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 15px 0 10px;
  font-weight: 500;
}
.share-users-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}
.share-user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  min-width: 60px;
}
.share-user-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.share-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.share-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}
.share-option-btn i {
  font-size: 2rem;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
#share-whatsapp i {
  background-color: #25d366;
}
#copy-reel-link i {
  background-color: #333;
}
#download-reel i {
  background-color: #555;
}
.send-reel-content {
  background: var(--primary-bg);
  border-radius: 8px;
  width: 90vw;
  max-width: 400px;
  border: 1px solid var(--border-color);
}
.send-reel-body {
  padding: 20px;
}
.send-reel-footer button {
  width: 100%;
}
.custom-alert-content {
  background: var(--primary-bg);
  border-radius: 8px;
  width: 90vw;
  max-width: 400px;
}
/* ============================================== */
/* === DOSTUNA GÖNDƏRMƏ PƏNCƏRƏSİ YENİ STİLLƏR === */
/* ============================================== */

/* Pəncərənin əsas stili */
.send-reel-content {
  background: var(--primary-bg);
  border-radius: 12px; /* Kənarları daha yumşaq edirik */
  width: 90vw;
  max-width: 400px;
  border: 1px solid var(--border-color);
  display: flex; /* Flexbox istifadə edirik */
  flex-direction: column; /* Elementləri alt-alta düzürük */
  overflow: hidden; /* Kənara çıxan elementləri gizlədirik */
}

/* Pəncərənin içindəki əsas hissə */
.send-reel-body {
  padding: 20px;
  display: flex; /* Önizləmə və mesaj qutusunu yan-yana qoyuruq */
  gap: 15px; /* Aralarında boşluq yaradırıq */
  align-items: flex-start; /* Yuxarıdan başlayaraq düzürük */
}

/* Video önizləməsi üçün stil */
.send-reel-preview {
  flex-shrink: 0; /* Kiçilməsinin qarşısını alırıq */
  width: 80px;
  height: 120px;
  background-color: #000;
  border-radius: 8px; /* Kənarları yumşaldırıq */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Önizləmə içindəki videonun stili */
.send-reel-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Videonu qutuya tam sığdırırıq */
}

/* Mesaj yazmaq üçün sahənin stili */
#send-reel-message {
  flex-grow: 1; /* Qalan bütün boşluğu doldurur */
  min-height: 120px; /* Önizləmə ilə eyni hündürlükdə başlayır */
  background-color: var(--main-bg);
  border: 1px solid var(--border-color);
  color: var(--text);
  padding: 10px;
  border-radius: 8px;
  resize: vertical;
  font-size: 0.95rem;
}
#send-reel-message:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Pəncərənin alt hissəsi */
.send-reel-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.2);
}

/* "Göndər" düyməsi üçün ümumi stil (əgər yoxdursa) */
.btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s;
  background-color: var(--accent-color);
  color: #fff;
  width: 100%; /* Düymənin enini tam edirik */
}
.btn-primary:hover {
  background-color: #25a1d1;
}
#share-panel {
  align-items: flex-end; /* user-profile.css-də bu yox idi */
}
.share-panel-content {
  background-color: var(--panel-bg);
  width: 100%;
  max-width: 600px;
  height: auto;
  max-height: 60vh;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.3s ease-out;
}
.share-panel-header {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.share-panel-body {
  padding: 10px 20px 20px;
  overflow-y: auto;
}
.share-section-title {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 15px 0 10px;
  font-weight: 500;
}
.share-users-list {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 15px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
}
.share-user-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-align: center;
  min-width: 60px;
  background: none; /* Dəyişiklik: button idi, indi div/button ola bilər */
  border: none;
  color: inherit;
}
.share-user-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.share-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 20px;
  margin-top: 15px;
}
.share-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}
.share-option-btn i {
  font-size: 2rem;
  color: #fff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
#share-whatsapp i {
  background-color: #25d366;
}
#copy-reel-link i {
  background-color: #333;
}
#download-reel i {
  background-color: #555;
}
.share-option-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.share-option-btn:disabled i {
  background-color: #555 !important;
}

/* Göndərmə Pəncərəsi (reels.css-dən) */
.send-reel-content {
  background-color: var(--primary-bg);
  border-radius: 12px;
  width: 90vw;
  max-width: 400px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.send-reel-body {
  padding: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.send-reel-preview {
  flex-shrink: 0;
  width: 80px;
  height: 120px;
  background-color: #000;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.send-reel-preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#send-reel-message {
  flex-grow: 1;
  min-height: 120px;
  background-color: var(--main-bg);
  border: 1px solid var(--border-color);
  color: var(--text);
  padding: 10px;
  border-radius: 8px;
  resize: vertical;
  font-size: 0.95rem;
}
#send-reel-message:focus {
  outline: none;
  border-color: var(--accent-color);
}
.send-reel-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0.2);
}

/* Alert Pəncərəsi (reels.css-dən) */
.custom-alert-content {
  background-color: var(--primary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 90%;
  max-width: 450px;
  animation: fadeIn 0.3s ease-out;
  z-index: 1001;
}
.custom-alert-header {
  padding: 15px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.custom-alert-body {
  padding: 25px 20px;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Ümumi stillər (əgər çatışmırsa) */
.btn-primary {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background-color 0.2s;
  background-color: var(--accent-color);
  color: #fff;
  width: 100%;
}
.btn-primary:hover {
  background-color: #25a1d1;
}
.btn-primary:disabled {
  background-color: #1c4a8d;
  cursor: not-allowed;
}
