.container {
    background-color: #ebeff2
}

.card {
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 10px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0.25);
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-image: url("data:image/svg+xml,...");
    /* default caret SVG */
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, 0.25);
}

.form-select:disabled {
    background-color: #e9ecef;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

h2 {
    font-size: 1.5rem !important;
    font-weight: 500;
    margin-bottom: 1rem;
}

.mt-3 {
    margin-top: 1rem !important;
}

.alert {
    display: inline-block;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.text-center {
    text-align: center !important;
}

.btn {
    display: inline-block;
    font-weight: 400;
    color: #fff;
    background-color: #0d6efd;
    border: 1px solid #0d6efd;
    padding: 0.375rem 0.75rem;
    border-radius: 0.375rem;
    text-align: center;
    cursor: pointer;
    transition: color .15s, background-color .15s, border-color .15s, box-shadow .15s;
}

.btn:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.form-check {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 7px;
}

.form-check-input {
    margin: 0 !important;
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal {
    background: #fff;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
}

.custom-modal-header {
    padding: 1rem;
    background: #5290d3;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal-title {
    margin: 0;
    font-size: 1.25rem;
}

.custom-modal-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.custom-modal-body {
    padding: 1rem;
    text-align: center;
    font-size: 1rem;
}

.custom-modal-footer {
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #eee;
}

.custom-modal-button {
    background: #5290d3;
    color: white;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.custom-modal-button:hover {
    background: #0056b3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
