/* ========================================
   GorevLab - Antigravity & Glassmorphism
   ======================================== */

:root {
    --bg-slate-50: #faf6f3; /* Light Sand */
    --text-slate-800: #1e293b;
    --text-slate-600: #475569;
    --indigo-600: #345DA7; /* Deep Blue */
    --indigo-500: #3B8AC4; /* Mid Blue */
    --purple-500: #4BB4DE; /* Light Cyan */
}

body {
    background-color: var(--bg-slate-50) !important;
    color: var(--text-slate-800) !important;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    margin-bottom: 60px;
}

/* ========================================
   ANTIGRAVITY & GLASSMORPHISM CLASSES
   ======================================== */

/* Float and Glow Utilities */
.antigravity-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem; /* rounded-3xl approx */
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.antigravity-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 25px 50px -12px rgba(79, 70, 229, 0.2);
}

.antigravity-btn {
    background: linear-gradient(135deg, var(--purple-500), var(--indigo-600));
    color: #fff;
    border-radius: 9999px; /* Pill */
    padding: 0.75rem 1.5rem; /* min h-12 area */
    box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    border: none;
    font-weight: 700;
}
.antigravity-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.4);
    color: #fff;
}
.antigravity-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Input Styles */
.antigravity-input {
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 1rem !important;
    padding: 0.75rem 1rem !important; /* height boost */
    color: var(--text-slate-800) !important;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.02);
}
/* Arama kutusu gibi sol padding gereken (ikonlu) inputlar için düzeltme */
.antigravity-input.pl-10 {
    padding-left: 2.5rem !important;
}
.antigravity-input.pr-10 {
    padding-right: 2.5rem !important;
}
.antigravity-input:focus {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 10px 15px -3px rgba(79, 70, 229, 0.15) !important;
    border-color: rgba(99, 102, 241, 0.5) !important;
    background: rgba(255, 255, 255, 0.7) !important;
    outline: none;
}

/* Base Bootstrap Overrides */
.form-control, .form-select {
    @extend .antigravity-input;
}

.table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--text-slate-800);
}
.table-hover tbody tr {
    transition: all 0.2s ease;
}
.table-hover tbody tr:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1);
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
}

/* Modal Antigravity */
.modal-content {
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 2rem !important;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 25px 50px -12px rgba(79, 70, 229, 0.25) !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(99, 102, 241, 0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(99, 102, 241, 0.6); }

/* Selection */
::selection { background: var(--indigo-500); color: #fff; }