/* ==========================================================================
YAZI STILLERI
   ========================================================================== */

p {
    font-size: 14px;
}
:root {
    --p-primary: #fd8d1f;      /* Canlı İndigo */
    --p-primary-hover: #4338ca;
    --p-secondary: #10b981;    /* Siber Zümrüt */
    --p-dark: #0f172a;         /* Gece Mavisi */
    --p-bg-gradient: linear-gradient(135deg, #4f46e5 0%, #10b981 100%);
}

/* 🌟 Global Buton ve Form Tasarımlarını Premium Yapma */
button[type="submit"], .p-btn-primary {
    background: var(--p-bg-gradient) !important;
    background-size: 100% 100%;
    border: none !important;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 14px -4px rgba(79, 70, 229, 0.4) !important;
}

button[type="submit"]:hover, .p-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px -4px rgba(16, 185, 129, 0.5) !important;
}

/* 🌟 Hesaplama Sonuç Kutularına Estetik Arka Plan Dokunuşu */
.bg-indigo-50\/40, .result-box-primary {
    background-color: rgba(79, 70, 229, 0.03) !important;
    border: 1px dashed rgba(79, 70, 229, 0.2) !important;
    position: relative;
}

.bg-indigo-50\/40::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--p-bg-gradient);
    border-radius: 20px 0 0 20px;
}

/* Text Renk Ayarları */
.text-indigo-600 {
    color: var(--p-primary) !important;
}
.text-emerald-600 {
    color: var(--p-secondary) !important;
}

/* 🌟 Kategori İndeks Kartlarındaki İkon Kutuları */
.group:hover .w-9.h-9.bg-slate-50 {
    background: var(--p-bg-gradient) !important;
    color: white !important;
    transform: rotate(5deg);
}

/* İnce Kaydırma Çubuğu (Scrollbar) Estetiği */
.scrollbar-thin::-webkit-scrollbar-thumb {
    background-color: rgba(79, 70, 229, 0.3);
    border-radius: 10px;
}
.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: var(--p-bg-gradient);
}