:root {
    --primary: #2563EB;
    --primary-dark: #1e40af;
    --success: #10B981;
    --bg: #F3F4F6;
    --text: #1F2937;
    --card-bg: #FFFFFF;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Cards */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 20px;
}

/* Typography */
h1 { font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.75rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* Forms */
.form-group { display: flex; gap: 10px; margin-bottom: 1rem; }
.input-field {
    flex: 1;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
}

/* Table */
table { width: 100%; border-collapse: collapse; }
th { text-align: left; padding: 12px; border-bottom: 2px solid #E5E7EB; color: #6B7280; font-size: 0.875rem; }
td { padding: 16px 12px; border-bottom: 1px solid #E5E7EB; }

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.status-pending { background: #FEF3C7; color: #D97706; }
.status-located { background: #D1FAE5; color: #059669; }

/* Client Mobile View */
.mobile-container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.hero-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37, 99, 235, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.locate-btn {
    width: 100%;
    padding: 20px;
    font-size: 1.25rem;
    margin-top: 2rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.map-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}
