.page {
    max-width: 1000px;
    margin: 0 auto;
}

.page-title {
    margin: 0 0 24px 0;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.action-card {
    flex: 1;
    min-width: 180px;
    padding: 16px;
    border-radius: 12px;
    background: #f3f3f3;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: 0.2s;
    border: none;
    font-size: 15px;
}

.action-card:hover {
    background: #eaeaea;
}

.form-group {
    margin-bottom: 16px;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
}

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    width: 90%;
    max-width: 420px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.modal h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    padding: 10px 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: black;
    color: white;
}

.btn-secondary {
    background: #eaeaea;
}

.empty-state {
    color: #777;
}