/* Kronjysk Service - fælles grunddesign */

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #111827;
    background: #f4f6f8;
}

/* Formularfelter */

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 7px;
    box-sizing: border-box;
    background: #fff;

    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #111827;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #2563eb;
    outline: 2px solid rgba(37, 99, 235, 0.15);
}

input::placeholder,
textarea::placeholder {
    color: #9ca3af;
    font-size: 16px;
}

/* Labels */

label {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

/* Knapper */

button,
.button {
    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
}

/* Hjælpetekst */

.muted {
    color: #6b7280;
}

/* Mobil / iPad */

@media (max-width: 800px) {
    input,
    select,
    textarea {
        font-size: 18px;
        padding: 13px 14px;
    }

    label {
        font-size: 17px;
    }

    button,
    .button {
        font-size: 17px;
    }
}
/* Vigtig sags- og kundetekst */

.customer-text,
.description,
.internal-comment-text {
    font-size: 18px;
    line-height: 1.6;
    color: #111827;
}

/* Metadata som dato/navn må gerne være lidt mindre */
.internal-comment-meta {
    font-size: 15px;
}
.log-entry p,
.history-entry p {
    font-size: 17px;
    line-height: 1.5;
}
