:root {
    --primary-color: #cc9933;
    --secondary-color: #002951;
    --font-family: "Montserrat", sans-serif;
    --success-color: #28a745;
    --warning-color: #ffc824;
}

body {
    font-family: var(--font-family);
    max-width: 450px;
    margin-inline: auto;
    font-optical-sizing: auto;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.btn-back {
    border-radius: 10px;
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 12px;
}

.btn-pretty {
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    font-weight: 600;
    font-size: .8rem;
    transition: all 0.3s ease;
    width: 100%;
    color: white;
}

.btn-pretty:hover {
    color: var(--white);
    background: var(--primary-color);
}