/* ===== RESET & BASE ===== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f4f6f9;
    color: #1f2937;
}

h1, h2, h3 {
    margin-top: 0;
}

a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    width: 100%;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-topbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    margin-bottom: 30px;
}

.user-topbar-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}