* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f6f9;
}

/* NAVBAR */
.navbar {
    background: #1f2937;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.navbar a:hover {
    text-decoration: underline;
}

/* CONTAINER */
.container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.container h1 {
    margin-bottom: 20px;
    color: #111827;
}

/* CARDS */
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 8px;
}

.card p {
    margin: 10px 0;
}

/* BADGES */
.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    text-transform: uppercase;
    color: white;
}

.lost .badge {
    background: #dc2626;
}

.found .badge {
    background: #16a34a;
}

/* EMPTY */
.empty {
    text-align: center;
    color: #6b7280;
    margin-top: 40px;
}
/* FORM CARD */
.form-card {
    max-width: 400px;
    margin: auto;
}

.form-card h2 {
    text-align: center;
    margin-bottom: 20px;
}

.form-card label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-card input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
}

.form-card button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    border: none;
    color: white;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
}

.form-card button:hover {
    background: #1e40af;
}

.message {
    background: #ecfeff;
    color: #0369a1;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}

.link {
    text-align: center;
    margin-top: 15px;
}

.link a {
    color: #2563eb;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}
.subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 15px;
}

.error {
    background: #fee2e2;
    color: #b91c1c;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 15px;
    text-align: center;
}
textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-family: inherit;
}

select {
    background: white;
}

button {
    margin-top: 10px;
}

/* ADMIN DASHBOARD BUTTONS */
.btn {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    cursor: pointer;
}

.approve {
    background: #16a34a;
}

.approve:hover {
    background: #15803d;
}

.deny {
    background: #dc2626;
}

.deny:hover {
    background: #b91c1c;
/* =========================
   GLOBAL AESTHETIC RESET
========================= */
body {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    color: #111827;
}

/* =========================
   NAVBAR (GLASS EFFECT)
========================= */
.navbar {
    background: rgba(31, 41, 55, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.navbar h2 {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.navbar a {
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background: rgba(255,255,255,0.15);
    text-decoration: none;
}

/* =========================
   DASHBOARD HEADINGS
========================= */
.dashboard h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

/* =========================
   CARD GRID
========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* =========================
   AESTHETIC CARDS
========================= */
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.4);
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   CARD HEADER
========================= */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

/* =========================
   BADGES (PILL STYLE)
========================= */
.badge {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =========================
   LOST / FOUND COLORS
========================= */
.lost {
    border-left: 6px solid #ef4444;
}

.lost .badge {
    background: #fee2e2;
    color: #b91c1c;
}

.found {
    border-left: 6px solid #22c55e;
}

.found .badge {
    background: #dcfce7;
    color: #166534;
}

/* =========================
   CARD TEXT
========================= */
.card p {
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
}

.card small {
    color: #6b7280;
    font-size: 13px;
}

/* =========================
   EMPTY STATE
========================= */
.empty {
    background: rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
}

/* =========================
   FORM AESTHETICS (BONUS)
========================= */
input, textarea, select {
    border-radius: 12px;
    border: 1px solid #dbeafe;
    transition: all 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.2);
}

button {
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    box-shadow: 0 8px 20px rgba(99,102,241,0.4);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99,102,241,0.5);
}
/* =====================
   GLOBAL RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', system-ui, sans-serif;
}

body {
    background: linear-gradient(135deg, #eef2ff, #f8fafc);
    color: #1f2937;
    min-height: 100vh;
}

/* =====================
   NAVBAR
===================== */
.navbar {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.navbar h2 {
    color: #e0e7ff;
    font-weight: 600;
    letter-spacing: 1px;
}

.navbar a {
    color: #e5e7eb;
    text-decoration: none;
    margin-left: 18px;
    padding: 6px 14px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.navbar a:hover {
    background: rgba(255,255,255,0.15);
}

/* =====================
   CONTAINER
===================== */
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.dashboard h1 {
    font-size: 34px;
    margin-bottom: 30px;
    font-weight: 600;
}

/* =====================
   SECTIONS
===================== */
.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1e3a8a;
}

/* =====================
   GRID
===================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* =====================
   CARD BASE
===================== */
.card {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 
        0 10px 25px rgba(0,0,0,0.08),
        inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.35s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =====================
   CARD HEADER
===================== */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.card-header h3 {
    font-size: 18px;
    font-weight: 600;
}

/* =====================
   BADGE
===================== */
.badge {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================
   LOST / FOUND STYLES
===================== */
.lost {
    border-left: 6px solid #ef4444;
}

.lost .badge {
    background: #fee2e2;
    color: #b91c1c;
}

.found {
    border-left: 6px solid #22c55e;
}

.found .badge {
    background: #dcfce7;
    color: #166534;
}

/* =====================
   CARD TEXT
===================== */
.card p {
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 12px;
}

.card small {
    font-size: 13px;
    color: #6b7280;
}

/* =====================
   EMPTY STATE
===================== */
.empty {
    background: rgba(255,255,255,0.6);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 12px;
    }

    .dashboard h1 {
        font-size: 28px;
    }
}

/* =====================
   DASHBOARD BUTTON
===================== */
.btn-dashboard {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-dashboard::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;
}

.btn-dashboard:hover::before {
    left: 100%;
}

.btn-dashboard:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-dashboard:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.5);
}
