    :root {
      --text-muted: #5e6878;
      --text-dark: #2c2e43;
      --radius: 20px;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #f9fafb;
      padding-bottom: 90px;
    }
    header {
      background: linear-gradient(135deg, #fdfcfb, #e2ebf0);
      z-index: 50;
      min-height: 15vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px;
      border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    .itiraf-container {
      max-width: 900px;
      margin: 40px auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 25px;
    }
    .itiraf-card {
      color: #374151;
      background-color: #ffffff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 1px solid #e5e7eb;
    }
    .itiraf-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }
    .itiraf-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: linear-gradient(90deg, #3b82f6, #60a5fa);
    }
    .avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
      border: 2px solid #3b82f6;
    }
    .post-content-wrapper {
      margin-top: 15px;
      font-size: 1rem;
      line-height: 1.7;
      white-space: pre-wrap;
      word-break: break-word;
      color: #4b5563;
    }
    .post-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 15px;
      padding-top: 12px;
      border-top: 1px solid #e5e7eb;
    }
    .action-btn {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 0;
      font-size: 0.95rem;
      color: #4b5563;
      transition: color 0.2s ease, transform 0.2s ease;
    }
    .action-btn:hover {
      color: #ef4444;
      transform: translateY(-2px) scale(1.05);
    }
    .action-btn.liked {
      color: #ef4444;
    }
    .itiraf-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(5px);
      z-index: 9999;
      display: none;
    }
    .itiraf-overlay.show {
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease;
    }
    .itiraf-card-new {
      background-color: #ffffff;
      border-radius: 12px;
      max-width: 600px;
      width: 90%;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }
    .loading-spinner-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 50;
    }
    .loading-spinner {
      border: 8px solid #f3f3f3;
      border-top: 8px solid #3b82f6;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      animation: spin 1s linear infinite;
    }
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    .message-box-container {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #1f2937;
        color: #e2e8f0;
        padding: 15px 25px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        z-index: 10000;
        display: none;
        max-width: 90%;
        text-align: center;
    }
    .filter-btn {
      padding: 0.4rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      background: #e5e7eb;
      color: #374151;
      transition: all 0.2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .filter-btn.active {
      background: #2563eb;
      color: white;
      font-weight: 600;
    }
    
    /* Navigasyon Menüsü */
 

    
    /* İtiraf formu stilleri */
    .itiraf-input {
        width: 100%;
        min-height: 120px;
        padding: 15px;
        margin: 15px 0;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        resize: vertical;
        font-size: 1rem;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
        transition: border-color 0.3s ease;
    }
    .itiraf-input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
    }
    
    /* Mobil görünüm için float buton ve simülasyon butonları */
    .floating-btn-container {
        position: fixed;
        bottom: 80px; /* Menüden yukarıda */
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
        z-index: 100;
    }
    .floating-btn {
        background-color: #3b82f6;
        color: white;
        padding: 12px 20px;
        border-radius: 30px;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
        transition: all 0.3s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    .floating-btn:hover {
        background-color: #2563eb;
        transform: translateY(-2px);
    }
    .simulation-btns {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .simulation-btn {
        background-color: #f3f4f6;
        color: #4b5563;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        transition: all 0.2s ease;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .simulation-btn:hover {
        background-color: #e5e7eb;
        color: #1f2937;
    }
    
    /* Yorum Modal Stilleri */
    .comments-list {
        max-height: 300px;
        overflow-y: auto;
        padding: 10px;
        border: 1px solid #374151; /* Darker border for dark modal */
        border-radius: 6px;
        margin-bottom: 10px;
        background-color: #1f2937;
    }
    .comment-item {
        background-color: #2c3138;
        padding: 10px;
        border-radius: 6px;
        margin-bottom: 8px;
        color: #e5e7eb;
    }
    .comment-item span {
        color: #9ca3af;
        display: block;
        margin-top: 4px;
    }
    .comment-close-btn {
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
    }

.itiraf-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50; /* yüksek bir değer olmalı */
}

.itiraf-card-new {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 60; /* overlay’den yüksek */
}
.message-btn, .like-btn, .comment-btn {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Başta yazıyı göster */
.desktop-only {
  display: inline;
}

/* 768px altındaki ekranlarda gizle (mobil) */
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

.message-btn:hover {
  color: #10b981;
}

.like-btn:hover {
  color: #ef4444;
}

.comment-btn:hover {
  color: #3b82f6;
}