.page {
    min-height: 100vh;
    background: #f8fafc; /* slate-50 */
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
}
.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1rem;
}
.title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
}

/* Main */
.main {
    padding: 1.5rem 1rem;
}

/* Card */
.card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.card-content {
    padding: 1.5rem;
}

/* Form */
.form-box {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
}
.label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}
.input,
.textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}
.textarea {
    min-height: 4rem;
    resize: vertical;
}
.actions-end {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
}

/* List */
.list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background: white;
}
.list-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.list-right {
    display: flex;
    gap: 0.5rem;
}
.badge {
    background: #ffb800;
    color: black;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Buttons */
.btn {
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-primary {
    background: #ffb800;
    color: black;
}
.btn-primary:hover {
    background: #e6a600;
}
.btn-outline {
    border: 1px solid #e2e8f0;
    background: white;
    color: #334155;
}
.btn-outline:hover {
    background: #f1f5f9;
}
.btn-danger {
    background: transparent;
    border: none;
    color: #dc2626;
    font-size: 1rem;
}
.btn-danger:hover {
    color: #b91c1c;
}
