﻿/* ===== Input fields (text, number, password, email, select) ===== */
.form-control, .form-select {
    border: 2px solid #0d6efd; /* Bootstrap primary color */
    border-radius: 0.5rem;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: all 0.2s ease-in-out;
}

    /* On focus */
    .form-control:focus, .form-select:focus {
        border-color: #0a58ca;
        box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.25);
    }

/* Labels */
.form-label {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

/* Switches (bootstrap toggles) */
.form-check-input {
    cursor: pointer;
    border: 2px solid #0d6efd;
}

    .form-check-input:checked {
        background-color: #0d6efd;
        border-color: #0d6efd;
    }

/* Buttons */
.btn {
    border-radius: 0.5rem;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.1s ease-in-out;
}

    .btn:hover {
        transform: translateY(-2px);
    }

/* Cards */
.card {
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.card-header {
    font-weight: 600;
    background-color: #f8f9fa;
}

.navbar {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
}

    .navbar .navbar-brand {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

        .navbar .navbar-brand img {
            height: 50px;
            display: block; /* removes extra descender space */
            padding: 0 !important;
            margin: 0 !important;
        }
