body {
    font-family: Arial, sans-serif;
    /* margin: 0; */
    /* padding: 20px; */
    background-color: #fff;
    color: #333;
    /* display: flex;
    justify-content: center;
    align-items: flex-start; */
    min-height: 100vh;
    margin: 0;
    padding: 2px;
    display: flex;
    justify-content: center;
    /* centers horizontally */
}

.btn-xs {
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
    line-height: 1;
}

.container-fluid {
    height: auto;
    max-width: 1060px;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    color: #0056b3;
    margin-bottom: 0;
}



.input-group {

    grid-column: 3 / 4;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    /* background-color: #e9f5ff; */
    /* border-radius: 10px; */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;

}

.input-group label {
    font-weight: bold;
    color: #0056b3;
    font-size: 0.8rem;

}

.input-group input[type="number"],
.input-group input[type="text"],
.input-group input[type="date"],
.input-group input[type="time"],
.input-group input[type="time"],
.input-group select,
.input-group input[type="datetime-local"] {

    padding: 5px;
    border: 1px solid #ccc;
    border-radius:10px;
    font-size: 0.9rem;
    background-color: #fff;
    border-top-left-radius: 10px !important;
    border-bottom-left-radius: 10px !important;

    /* width: calc(100% - 22px); */
}



