@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Inter:wght@300;400;600&display=swap');

:root {
    --mm-blue: #0a192f;
    --mm-gold: #c5a059;
    --mm-light-blue: #172a45;
    --text-white: #e6f1ff;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-accent: #64ffda; /* Për detaje teknologjike */
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--mm-blue);
    background-image: 
        radial-gradient(at 0% 0%, hsla(213,49%,25%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(43,47%,39%,1) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(213,49%,25%,1) 0, transparent 50%), 
        radial-gradient(at 0% 100%, hsla(200,100%,15%,1) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--text-white);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography per Titujt (Stil Ushtarak/Futuristik) */
h1, h2, h3, h4, h5, .navbar-brand {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Glassmorphism Cards */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    color: white;
}

/* Butonat Speciale */
.btn-gold {
    background: linear-gradient(45deg, #c5a059, #e6c88b);
    color: #0a192f;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.6);
    color: #000;
}

.btn-outline-glass {
    background: transparent;
    border: 1px solid var(--mm-gold);
    color: var(--mm-gold);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-outline-glass:hover {
    background: rgba(197, 160, 89, 0.1);
    color: white;
    border-color: white;
}

/* Tabelat */
.table-modern {
    color: #ccd6f6;
}
.table-modern thead th {
    background-color: rgba(23, 42, 69, 0.8);
    color: var(--mm-gold);
    border-bottom: 2px solid var(--mm-gold);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
}
.table-modern td {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
}
.table-modern tbody tr:hover {
    background-color: rgba(255,255,255,0.02);
}

/* Form Inputs */
.form-control {
    background: rgba(10, 25, 47, 0.6);
    border: 1px solid var(--glass-border);
    color: white;
}
.form-control:focus {
    background: rgba(10, 25, 47, 0.9);
    border-color: var(--mm-gold);
    color: white;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.2);
}
.form-control::placeholder {
    color: rgba(255,255,255,0.4);
}

/* Navbar */
.navbar-glass {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

/* Animacion Hyrje */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Status Badges */
.badge-status-open {
    background: rgba(255, 99, 71, 0.2);
    color: #ff6347;
    border: 1px solid rgba(255, 99, 71, 0.5);
}
.badge-status-closed {
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    border: 1px solid rgba(100, 255, 218, 0.5);
}