﻿/* Add custom styles to the container */
.container {
    max-width: 800px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 10px !important;
}

/* Add custom styles to form elements */
.form-floating {
    margin-bottom: 20px !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 1rem;
}

    .form-group label {
        font-weight: bold !important;
    }

    .form-group input[type="text"],
    .form-group input[type="date"],
    .form-group select {
        width: 100%;
        padding: 0.5rem;
        margin-top: 0.5rem;
        border: 1px solid #ced4da;
        border-radius: 5px;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .form-group input[type="text"]:focus,
        .form-group input[type="date"]:focus,
        .form-group select:focus {
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
        }

/* Add custom styles to alerts */
.alert {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

input:hover {
    border-color: #007bff; /* Change border color on hover */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add shadow on hover */
}

select:hover {
    border-color: #007bff; /* Change border color on hover */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add shadow on hover */
}

.form-switch .form-check-input {
    width: 3em !important;
    margin-left: -2.5em !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position .15s ease-in-out /*height: 24px !important; margin-right: 15px;*/;
    height: 1.5em !important;
    margin-right: 10px !important;
}

.col-4 {
    flex: 0 0 auto;
    width: 39.333333% !important;
}
/*.spinner-border {
    display: none !important;
}*/
.labelBold {
    font-weight: 400 !important;
    padding-bottom: 7px !important;
}

.form-select-lg {
    font-size: 17px !important;
}

label {
    margin-bottom: 4px !important;
}
