/* JobMatch Custom Styles */

/* Base responsive font size - scales with viewport */
:root {
    --base-font-size: 16px;
}

html {
    font-size: var(--base-font-size);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.form-control {
    border-radius: 0.375rem;
}

.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Large screens (1440px+) */
@media (min-width: 1440px) {
    :root {
        --base-font-size: 18px;
    }

    .container {
        max-width: 1320px;
    }
}

/* Extra large screens (1920px+ / Full HD) */
@media (min-width: 1920px) {
    :root {
        --base-font-size: 20px;
    }

    .container {
        max-width: 1600px;
    }
}

/* 4K screens (2560px+) */
@media (min-width: 2560px) {
    :root {
        --base-font-size: 24px;
    }

    .container {
        max-width: 2000px;
    }
}

/* Ultra-wide 4K (3840px+) */
@media (min-width: 3840px) {
    :root {
        --base-font-size: 28px;
    }

    .container {
        max-width: 2800px;
    }
}
