html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Ana Buton Stilleri */
.btn-task {
    border-radius: 12px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Birincil (Mavi) Buton - Ekleme ve Kaydetme İçin */
.btn-primary-tm {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

    .btn-primary-tm:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
        color: white;
    }

/* Silme Butonu - Tehlikeli İşler İçin */
.btn-danger-tm {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
}

    .btn-danger-tm:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 16px rgba(244, 63, 94, 0.4);
        color: white;
    }

/* Düzenleme/İstatistik Butonu - Sarı/Turuncu */
.btn-warning-tm {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

    .btn-warning-tm:hover {
        transform: rotate(-1deg) translateY(-2px);
        color: white;
    }

/* İptal/Geri Butonu - Kesin Çözüm */
.btn-secondary-tm {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    text-decoration: none !important; /* Alt çizgiyi kaldırır */
    justify-content: center; /* İçeriği ortalar */
}

    .btn-secondary-tm:hover {
        background-color: #e2e8f0 !important;
        color: #1e293b !important;
        transform: translateY(-2px);
        text-decoration: none !important;
    }

/* Birincil Butonun Alt Çizgisini de Garantiye Alalım */
.btn-primary-tm {
    text-decoration: none !important;
    justify-content: center;
}.btn-secondary-tm {
    background: #f1f5f9;
    color: #475569;
}

    .btn-secondary-tm:hover {
        background: #e2e8f0;
        color: #1e293b;
    }