/* ==============================================
   Tebligo - Modern UI Framework
   Tüm uygulama stilleri burada merkezi olarak toplanmıştır
   ============================================== */

/* ==============================================
   UTILITY CLASSES
   ============================================== */

/* Line Clamp Utilities */
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* ==============================================
   BREADCRUMB COMPONENT STYLES
   ============================================== */

/* Breadcrumb Container */
.breadcrumb-container {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  z-index: 40;
  transition: all 0.3s ease;
}

@media (max-width: 640px) {
  .breadcrumb-container {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }
}

/* Breadcrumb List */
.breadcrumb-list {
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.breadcrumb-list::-webkit-scrollbar {
  display: none;
}

/* Breadcrumb Items */
.breadcrumb-item {
  white-space: nowrap;
  flex-shrink: 0;
}

/* Breadcrumb Links */
.breadcrumb-link {
  position: relative;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none;
  font-weight: 500;
  color: #64748b;
}

.breadcrumb-link:hover {
  color: #3b82f6;
  background-color: rgba(59, 130, 246, 0.05);
  transform: translateY(-1px);
}

.breadcrumb-link:active {
  transform: translateY(0);
}

/* Current Breadcrumb */
.breadcrumb-current {
  color: #1e293b;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 0.375rem;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Breadcrumb Separator */
.breadcrumb-separator {
  color: #9ca3af;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover .breadcrumb-separator {
  color: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .breadcrumb-list {
    font-size: 0.8rem;
  }
  
  .breadcrumb-link,
  .breadcrumb-current {
    padding: 0.2rem 0.4rem;
  }
  
  .breadcrumb-separator {
    margin: 0 0.25rem;
    width: 0.875rem;
    height: 0.875rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .breadcrumb-container {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-bottom-color: rgba(71, 85, 105, 0.8);
  }
  
  .breadcrumb-link {
    color: #cbd5e1;
  }
  
  .breadcrumb-link:hover {
    color: #60a5fa;
    background-color: rgba(96, 165, 250, 0.1);
  }
  
  .breadcrumb-current {
    color: #f1f5f9;
    background-color: rgba(96, 165, 250, 0.15);
    border-color: rgba(96, 165, 250, 0.3);
  }
  
  .breadcrumb-separator {
    color: #64748b;
  }
}

/* Accessibility Improvements */
.breadcrumb-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 0.375rem;
}

/* Animation for breadcrumb appearance */
.breadcrumb-container {
  animation: slideInFromTop 0.3s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Temel Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
  40%, 43% { transform: translateY(-5px); }
  70% { transform: translateY(-2px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes pulse-slow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animasyon Sınıfları */
.animate-spin {
  animation: spin 1s linear infinite;
}

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 0.3s ease-out;
}

.animate-slideIn {
  animation: slideIn 0.4s ease-out;
}

.animate-slideInFromRight {
  animation: slideInFromRight 0.4s ease-out;
}

.animate-pulse-custom {
  animation: pulse 2s infinite;
}

/* ==============================================
   DASHBOARD AJANDA KISMI DÜZELTMELERI
   ============================================== */

/* Tab Sistemi Düzeltmeleri */
.tab-content {
  display: none;
  transition: all 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

/* Tab butonları için aktif durumu */
.active-tab {
  border-color: #3B82F6 !important;
  color: #3B82F6 !important;
}

/* Tab içeriği scroll düzeltmesi */
.tab-content {
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #CBD5E1 transparent;
}

.tab-content::-webkit-scrollbar {
  width: 6px;
}

.tab-content::-webkit-scrollbar-track {
  background: transparent;
}

.tab-content::-webkit-scrollbar-thumb {
  background-color: #CBD5E1;
  border-radius: 3px;
}

.tab-content::-webkit-scrollbar-thumb:hover {
  background-color: #94A3B8;
}

/* ====================================================
   AJANDA KARTLARI - SIFIRDAN YENİDEN YAZILDI
   ==================================================== */

/* Ana kart container */
.reminder-card {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
  overflow: hidden;
}

.reminder-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Ana flex container - basit ve temiz */
.reminder-card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

/* Sol taraf - içerik */
.reminder-card-left {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

/* Sağ taraf - tarih */
.reminder-card-right {
  flex-shrink: 0;
}

/* Başlık */
.reminder-card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0 0 0.75rem 0;
  line-height: 1.25;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Badge container */
.reminder-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  align-items: center;
}

/* Badge temel stil */
.reminder-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reminder-badge:hover {
  transform: scale(1.05);
  text-decoration: none;
}

/* Badge ikonları */
.reminder-badge i {
  margin-right: 0.25rem;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Tebligat badge */
.reminder-badge-notification {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.reminder-badge-notification:hover {
  background-color: #bfdbfe;
  color: #1e40af;
}

/* Dosya badge */
.reminder-badge-file {
  background-color: #dcfce7;
  color: #166534;
}

.reminder-badge-file:hover {
  background-color: #bbf7d0;
  color: #15803d;
}

/* Tarih badge */
.reminder-date-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive tasarım */
@media (max-width: 768px) {
  .reminder-card {
    padding: 0.75rem;
  }
  
  .reminder-card-content {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .reminder-card-right {
    align-self: flex-start;
  }
  
  .reminder-card-title {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }
  
  .reminder-card-badges {
    gap: 0.25rem;
  }
  
  .reminder-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
    max-width: 120px;
  }
  
  .reminder-badge i {
    font-size: 0.65rem;
    margin-right: 0.2rem;
  }
}

@media (max-width: 480px) {
  .reminder-card {
    padding: 0.5rem;
  }
  
  .reminder-card-title {
    font-size: 0.75rem;
  }
  
  .reminder-badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.3rem;
    max-width: 100px;
  }
  
  .reminder-date-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}

/* FullCalendar Düzeltmeleri */
.fc {
  font-family: inherit;
}

.fc-header-toolbar {
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .fc-header-toolbar {
    flex-direction: column;
  }
  
  .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
    margin-bottom: 0.25rem;
  }
  
  .fc-button-group {
    font-size: 0.875rem;
  }
  
  .fc-button {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
  }
}

.fc-event {
  border-radius: 4px;
  border: none;
  font-size: 0.75rem;
  padding: 2px 4px;
}

.fc-daygrid-event {
  margin: 1px;
  border-radius: 3px;
}

/* Responsive Grid Düzeltmeleri */
@media (max-width: 1024px) {
  .grid.grid-cols-1.lg\\:grid-cols-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Ajanda kartı responsive düzeltmeleri */
@media (max-width: 640px) {
  .tab-content {
    max-height: 400px;
    padding-right: 0.25rem;
  }
  
  .fc {
    font-size: 0.875rem;
  }
  
  .fc-toolbar-title {
    font-size: 1.125rem;
  }
  
  /* Ajanda kartları mobilde daha kompakt */
  .reminder-card {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .reminder-card h4 {
    font-size: 0.875rem;
    line-height: 1.3;
  }
  
  /* Tab başlıkları mobilde daha küçük */
  .tab-button {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .tab-button span {
    font-size: 0.8rem;
  }
}

/* Ek Güvenlik - Taşma Önleme */
.reminder-card * {
  box-sizing: border-box !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Tüm elementlerin sınırları zorla */
.reminder-card,
.reminder-card-content,
.reminder-card-left,
.reminder-card-right,
.reminder-card-badges {
  max-width: 100% !important;
  overflow: hidden !important;
}

/* Tab başlıkları için düzeltme */
.tab-buttons {
  border-bottom: 2px solid #E5E7EB;
}

.tab-button {
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.tab-button.active {
  color: #3B82F6;
  border-bottom-color: #3B82F6;
}

.tab-button:hover {
  color: #1E40AF;
}

/* Takvim container düzeltmesi */
#calendar {
  min-height: 400px;
}

@media (max-width: 768px) {
  #calendar {
    min-height: 300px;
  }
}

.animate-bounce-custom {
  animation: bounce 1.5s infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-scaleIn {
  animation: scaleIn 0.3s ease-out;
}

.animate-pulse-slow {
  animation: pulse-slow 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}



@keyframes progressGlow {
  0% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
  50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.6); }
  100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.3); }
}

@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fadeIn {
  animation: fadeIn 0.4s ease-out;
}

.animate-slideIn {
  animation: slideIn 0.5s ease-out;
}

.animate-pulse-custom {
  animation: pulse 2s infinite;
}

.animate-bounce-custom {
  animation: bounce 2s infinite;
}



.progress-glow {
  animation: progressGlow 2s ease-in-out infinite;
}

.shimmer {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  background-size: 200px 100%;
  animation: shimmer 1.5s infinite;
}

.progress-container {
  position: relative;
  overflow: hidden;
}

.progress-bar-animated {
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
  background-size: 300% 100%;
  animation: progressFlow 2s linear infinite;
  border-radius: 9999px;
  position: relative;
}

@keyframes progressFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.progress-bar-animated::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border-radius: inherit;
  animation: shimmer 2s infinite;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.status-badge.processing {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
}

.status-badge.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.status-badge.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.radio-option {
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 0.5rem;
  padding: 0.5rem;
  border: 2px solid transparent;
}

.radio-option:hover {
  background-color: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
  transform: scale(1.02);
}

.radio-option.selected {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  border-color: #3b82f6;
  transform: scale(1.05);
}



.log-entry {
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.log-entry:hover {
  background-color: rgba(59, 130, 246, 0.05);
  border-left-color: #3b82f6;
  transform: translateX(5px);
}

/* Tebligo site benzeri tasarım stilleri */
.tebligo-card {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.tebligo-header {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%) !important;
  color: white !important;
}

.tebligo-input {
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.75rem;
  transition: all 0.15s ease-in-out;
}

.tebligo-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tebligo-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.tebligo-button:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.tebligo-button-secondary {
  background: #6b7280;
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.tebligo-button-secondary:hover {
  background: #4b5563;
  transform: translateY(-1px);
}

/* Müvekkil Detay Sayfası Özel Stilleri */
.client-detail-hero {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
  position: relative;
  overflow: hidden;
}

.client-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
              linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%), 
              linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  opacity: 0.3;
}

.dashboard-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.notification-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.notification-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  transition: left 0.5s;
}

.notification-card:hover::before {
  left: 100%;
}

.notification-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #3b82f6;
}

.stat-progress-bar {
  background: linear-gradient(90deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
}

.stat-progress-fill {
  background: linear-gradient(90deg, #3b82f6 0%, #1d4ed8 100%);
  height: 100%;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}

.stat-progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

.quick-action-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.quick-action-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.quick-action-button:hover::before {
  left: 100%;
}

.quick-action-button:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.breadcrumb-link {
  transition: all 0.2s ease;
}

.breadcrumb-link:hover {
  color: #3b82f6;
  transform: translateX(2px);
}

.empty-state-illustration {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.loading-spinner {
  animation: spin 1s linear infinite;
}

.toast-notification {
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive iyileştirmeler */
@media (max-width: 768px) {
  .client-detail-hero {
    padding: 1.5rem;
  }
  
  .dashboard-card {
    margin-bottom: 1rem;
  }
  
  .notification-card {
    padding: 1rem;
  }
  
  .quick-action-button {
    padding: 0.75rem;
  }
}

/* ==============================================
   ALL-NOTICES SAYFASI ÖZEL STİLLERİ
   ============================================== */

/* Kompakt Tasarım Yardımcı Sınıfları */
.bg-green-25 {
  background-color: #f0fdf4;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

/* Kompakt Spacing Sınıfları */
.compact-spacing {
  padding: 0.5rem;
  margin: 0.25rem;
}

.compact-text {
  font-size: 0.85rem;
  line-height: 1.3;
}

.ultra-compact {
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1.2;
}

/* Kompakt Icon Boyutları */
.icon-xs {
  width: 0.75rem;
  height: 0.75rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

/* Kompakt Button Stilleri */
.btn-compact {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.2;
  border-radius: 0.375rem;
}

/* Ultra Kompakt All-Notices Tasarımı */
.tum-tebligatlar-container {
  background: #f8fafc;
  min-height: 100vh;
}

.tum-tebligatlar-header {
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.tum-tebligatlar-search-container {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.tum-tebligatlar-search-container:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tum-tebligatlar-search-input {
  transition: all 0.2s ease;
}

.tum-tebligatlar-search-input:focus {
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

/* Kompakt Tebligat Kartları */
.notification-card {
  background: white;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.notification-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.notification-row {
  transition: all 0.15s ease;
  cursor: pointer;
}

.notification-row:hover {
  background-color: rgba(59, 130, 246, 0.02);
}

/* Kompakt Responsive Optimizasyonları */
@media (max-width: 768px) {
  .notification-row {
    padding: 0.75rem;
  }
  
  .notification-row .text-sm {
    font-size: 0.8rem;
  }
  
  .notification-row .text-xs {
    font-size: 0.7rem;
  }
}

/* Modern Button Stilleri */
.btn-modern {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  border-radius: 8px;
}

.btn-modern:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-modern:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.btn-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  border: none;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.btn-secondary {
  background: #6b7280;
  color: white;
  border: none;
}

.btn-secondary:hover {
  background: #4b5563;
}

/* Status Badge'leri */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.status-badge:hover {
  transform: scale(1.05);
}

.status-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.status-warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.status-danger {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.status-neutral {
  background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
  color: white;
}

/* Client Link Stilleri */
.client-link {
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 4px;
}

.client-link:hover {
  transform: scale(1.02);
  background-color: rgba(59, 130, 246, 0.1);
}

/* Modal Stilleri */
.modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Toast Bildirimleri */
.toast-notification {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%) translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

/* Arama Vurgulama */
.search-highlight {
  background: linear-gradient(120deg, #fef08a 0%, #fde047 100%);
  color: #374151;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 500;
}

/* Loading Durumları */
.loading-button {
  position: relative;
  overflow: hidden;
}

.loading-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

/* Checkbox Stilleri */
.modern-checkbox {
  transition: all 0.2s ease;
  border-radius: 4px;
}

.modern-checkbox:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
  transform: scale(1.05);
}

.modern-checkbox:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 1px;
}

/* Sayfalama */
.pagination-container {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.pagination-link {
  transition: all 0.2s ease;
  border-radius: 6px;
}

.pagination-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #f9fafb;
}

.pagination-active {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Boş Durum */
.empty-state-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.empty-state-icon {
  animation: float 3s ease-in-out infinite;
  color: #9ca3af;
}

/* Kompakt Responsive Tasarım */
@media (max-width: 768px) {
  .notification-card:hover {
    transform: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  }
  
  .btn-modern:hover {
    transform: none;
  }
  
  .client-link:hover {
    transform: none;
  }
  
  .tum-tebligatlar-search-input:focus {
    transform: none;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
  }
  
  .pagination-link:hover {
    transform: none;
  }
  
  /* Ekstra Kompakt Mobil Ayarları */
  .tum-tebligatlar-container {
    padding: 0.5rem;
  }
  
  .notification-row {
    padding: 0.5rem 0.75rem;
  }
  
  .notification-row .flex.space-x-4 {
    gap: 0.5rem;
  }
  
  .notification-row .w-6.h-6 {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* Scroll iyileştirmeleri */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f9fafb;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f9fafb;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Toast Notifications */
.toast-notification {
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  animation: toastSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  min-width: 300px;
  position: relative;
  overflow: hidden;
}

.toast-notification.success {
  border-left: 4px solid #10b981;
}

.toast-notification.error {
  border-left: 4px solid #ef4444;
}

.toast-notification.warning {
  border-left: 4px solid #f59e0b;
}

.toast-notification.info {
  border-left: 4px solid #3b82f6;
}

.toast-notification.success .toast-icon {
  background: #d1fae5;
  color: #059669;
}

.toast-notification.error .toast-icon {
  background: #fee2e2;
  color: #dc2626;
}

.toast-notification.warning .toast-icon {
  background: #fef3c7;
  color: #d97706;
}

.toast-notification.info .toast-icon {
  background: #dbeafe;
  color: #2563eb;
}

.toast-content {
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.toast-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.4;
  color: #374151;
}

.toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: #6b7280;
  background: #f3f4f6;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  animation: toastProgress linear;
}

.toast-notification.success .toast-progress {
  animation-duration: 3s;
}

.toast-notification.error .toast-progress {
  animation-duration: 5s;
}

.toast-notification.warning .toast-progress {
  animation-duration: 4s;
}

.toast-notification.info .toast-progress {
  animation-duration: 3s;
}

@keyframes toastSlideIn {
  from {
    opacity: 0;
    transform: translateX(100%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes toastProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

@keyframes toastSlideOut {
  from {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%) translateY(-8px);
  }
}

/* ==============================================
   MINIMAL NAVBAR - SADECE TAİLWİND CSS KULLANILIYOR
   Artık tüm stiller Tailwind CSS sınıflarıyla yapılıyor
   ============================================== */

/* Responsive Improvements */
@media (max-width: 768px) {
  .notification-row:hover {
    transform: none;
  }
  
  .btn-modern:hover {
    transform: none;
  }
  
  .client-badge:hover {
    transform: none;
  }
  
  .search-input:focus {
    transform: none;
  }
  
  /* Minimal navbar mobil optimizasyonları */
  .minimal-navbar .flex.items-center.space-x-1 a:hover::before {
    display: none;
  }
  
  .minimal-navbar a[href="/dashboard"]:hover {
    transform: none;
  }
}

