/* ============================================================================
   PACIOLI ERP — Base Styles
   Body defaults, typography, links, placeholders.
   Depends on: pacioli.tokens.css
   ============================================================================ */

/* === Body === */
body {
    font-family: var(--pacioli-font-sans);
    background-color: var(--pacioli-bg);
    color: var(--pacioli-text-main);
    font-size: 14px;
    letter-spacing: -0.01em;
    position: relative;
}

a {
    text-decoration: none;
}

/* === Placeholders === */
input::placeholder,
input::-moz-placeholder {
    color: #000 !important;
    opacity: 0.3 !important;
}

/* === Page Title === */
.page-title {
    font-weight: 700;
    font-size: var(--pacioli-fs-2xl);
    color: var(--pacioli-text-heading);
}

/* === Labels === */
.form-label {
    font-weight: 600;
    color: var(--pacioli-text-label);
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
}

.form-label .text-danger {
    font-size: 1.05rem;
}

/* === Help Text === */
.form-text {
    font-size: var(--pacioli-fs-sm);
    color: var(--pacioli-text-muted);
    margin-top: var(--pacioli-space-xs);
    display: block;
}

/* === Headings === */
.card-header {
    background: transparent;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--pacioli-border);
    font-weight: 700;
    color: var(--pacioli-primary);
}

/* === Responsive base === */
@media (max-width: 576px) {
    .page-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 767px) {
    .page-title {
        font-size: 1.25rem;
    }
}
