body {
    background-color: #f5f5f5;
}


.form-select, input.form-control, textarea.form-control {
    background-color: #fafafa;
}

.form-select:active, .form-select:focus {
    background-color: #fff;
}

.required-field {
    color: #ff0000;
}

.required-field-note {
    color: #ff0000;
}

.form-section {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .mobile-stack {
        flex-direction: column !important;
    }

    .form-select {
        width:auto;
    }

    .countries-table {
        display: block;
        width: 99%;
    }

        .countries-table thead {
            display: none;
        }

        .countries-table tbody {
            display: block;
        }

        .countries-table tr {
            display: block;
            border: 1px solid #dee2e6;
            border-radius: 0.375rem;
            margin-bottom: 1rem;
            padding: 0.75rem;
            background-color: #fff;
        }

        .countries-table td {
            display: block;
            border: none;
            padding: 0.5rem 0;
            width: 100% !important;
        }
            /* Row 1: # and Country side by side */
            .countries-table td:first-child {
                display: inline-block;
                width: 100%;
                padding-right: 1rem;
                vertical-align: top;
            }

            .countries-table td:nth-child(2) {
                display: inline-block;
                width: 100%;
                vertical-align: top;
            }
            /* Row 2: Duration, Cities, Rural */
            .countries-table td:nth-child(3) {
                display: inline-block;
                width: 100%;
                margin-right: 1rem;
            }

            .countries-table td:nth-child(4) {
                display: inline-block;
                width: calc(30% - 0.5rem) !important;
                margin-right: 1rem;
            }

            .countries-table td:nth-child(5) {
                display: inline-block;
                width: calc(30% - 0.5rem) !important;
                margin-right: 0;
            }
            /* Row 3: More Information */
            .countries-table td:nth-child(6) {
                display: block;
                width: 100%;
            }

            .countries-table td:before {
                content: attr(data-label);
                font-weight: bold;
                display: block;
                margin-bottom: 0.25rem;
                font-size: 0.875rem;
                color: #6c757d;
            }

            .countries-table td.text-center {
                text-align: left !important;
            }

                .countries-table td.text-center:before {
                    margin-bottom: 0.5rem;
                }

    .table-hover > tbody > tr:hover > * {
        --bs-table-bg-state: #fff;
    }
}

button[name="Cancel"] a {
    color: white;
    text-decoration: none;
}
/*
#BirthDate::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/