@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p, label, input, span, div {
    font-weight: 400;
}

.container {
    max-width: 960px;
}

.card {
    border-radius: 0.5rem;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card-title {
    font-size: 16px;
    font-weight: 700;
}

.form-label {
    font-size: 14px;
}

.form-check-label {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

.results-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.results-container div {
    white-space: nowrap;
}

.table .btn {
    white-space: nowrap;
}