body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #777;
}

h1, h2 {
    text-transform: uppercase;
    color: #f6892e;
}

.form-label {
    color: #777;
}

.form-label.required::after {
    content: " *";
    color: red;
    font-weight: bold;
}

.form-text {
    color: #999 !important;
}

.form-control, .form-select {
    background-color: #fff;
    color: #555;
    border: 1px solid #555;
}

.form-control:focus, .form-select:focus {
    background-color: #fff;
    border-color: #f6892e;
    box-shadow: 0 0 0 0.2rem rgba(246, 137, 46, 0.25);
}

.btn {
    background-color: #f6892e;
    color: #fff;
    border: none;
}

.btn:hover {
    background-color: #e07023;
}

.bg-light {
    background-color: #fff !important;
}

.bg-primary {
    background-color: #f6892e !important;
}

.nav-link {
    color: #fff !important;
}

.nav-link:hover {
    text-decoration: underline;
}

#pageLoader {
    background-color: rgba(255, 255, 255, 0.8); 
    display: none;
}

.table {
    width: 100%;
    margin-top: 20px;
    background-color: #fff;
    color: #555;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px 15px;
    text-align: left;
}

.table th {
    background-color: #faf4ed; 
    color: #777; 
    text-transform: uppercase;
    font-weight: normal; 
    border-bottom: 1px solid #e1d8d0; 
}

.table td {
    border: 1px solid #e1d8d0; 
    vertical-align: middle;
}

.table tbody tr:nth-child(even) {
    background-color: #f9f9f9; 
}

.table tbody tr:hover {
    background-color: #f1f1f1; 
}

.table .btn-danger {
    background-color: #f6892e;
    color: #fff;
    border: none;
    padding: 6px 12px;
    font-size: 14px;
}

.table .btn-danger:hover {
    background-color: #e07023;
    text-decoration: none;
}

.table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table img {
    border-radius: 5px;
}

.flag-icon {
    width: 30px;
    height: 20px; 
    object-fit: cover; 
    border: 0px solid #ddd; 
    border-radius: 2px; 
}