
.roboto-font {
    font-family: "Roboto", sans-serif !important;
}

/* GLOBAL WEBSITE STYLE */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fff8e7 !important;
    color: #4a4a4a;
    font-family: "Poppins", sans-serif;
}


.profile-img-container{
    background-image: linear-gradient(
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.6)
    ),
    url("https://i.ibb.co/G3RK7Qf8/Gemini-Generated-Image-qc955hqc955hqc95.png") !important;

    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/* headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #4a4a4a;
}

/* paragraphs */
p {
    color: #4a4a4a;
}

/* navbar */
.navbar {
    background: #fff8e7 !important;
}

/* footer */
footer {
    background: #fff8e7;
    color: #4a4a4a;
}

/* links */
a {
    color: #4a4a4a;
}

a:hover {
    color: #c0392b;
}

/* cards */
.card {
    background: #ffffff;
    border: none;
}

/* section light override */
.bg-light {
    background: #fff8e7 !important;
}

div:not(.no-bg):not(.no-bg *):not(.modal):not(.modal *):not(.modal-dialog):not(.modal-content):not(.modal-backdrop) {
    background-color: #fff8e7;
    color: #4a4a4a;
}









.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.modal-backdrop.fade {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.modal-backdrop.show {
    opacity: 0.5;
}






















.bg-brand {
    background-color: #fff8e7 !important;
    color: #4a4a4a;
}



.bg-red {
    background-color: #b71c1c !important;
}

.text-red {
    color: #b71c1c !important;
}

.border-red {
    border-color: #b71c1c !important;
}

.text-red {
    color: #b71c1c !important;
}

/* Input, Select, Textarea focus */
.form-control:focus,
.form-select:focus,
textarea:focus {
    border: 1px solid #b71c1c !important;
    box-shadow: none !important;
    outline: none;
}

/* Checkbox & Radio focus */
.form-check-input:focus {
    border: 1px solid #b71c1c;
    box-shadow: none;
    outline: none;
}

/* Checkbox checked red */
.form-check-input:checked {
    background-color: #b71c1c;
    border: 1px solid #b71c1c;
}

.btn-red {
    background-color: #b71c1c;
    border-color: #b71c1c;
    color: #fff;
}

.btn-red:hover {
    background-color: transparent;
    border-color: #b71c1c;
    color: #b71c1c;
}

.btn-red:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.4);
}

.btn-outline-red {
    color: #b71c1c;
    border: 2px solid #b71c1c;
    background-color: transparent;
}

.btn-outline-red:hover {
    background-color: #b71c1c;
    color: #fff !important;
}

.alert-red {
    background-color: rgba(255, 0, 0, 0.1);
    border: 1px solid #b71c1c;
    color: #b71c1c;
}

.alert-red .btn-close {
    filter: invert(16%) sepia(95%) saturate(7500%) hue-rotate(0deg);
}

/* All Bootstrap Icons red */
.bi {
    color: #b71c1c !important;
}

/* Override Bootstrap success color */

.btn-success,
.bg-success {
    background-color: #4ade80 !important;   /* light green */
    border-color: #4ade80 !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #22c55e !important;   /* little darker on hover */
    border-color: #22c55e !important;
}

.btn-success:focus,
.btn-success:active {
    background-color: #22c55e !important;
    border-color: #22c55e !important;
    box-shadow: 0 0 0 0.2rem rgba(74, 222, 128, 0.35) !important;
}

/* Override Bootstrap success text */

.text-success {
    color: #4ade80 !important; /* light green */
}



/* ===== Select2 Full Style ===== */

/* container width */
.select2-container {
    width: 100% !important;
}

/* select box style */
.select2-container--default .select2-selection--single {
    height: 38px !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    background-color: #ffffff !important;
}

/* selected text */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px !important;
    padding-left: 12px !important;
    padding-right: 30px !important;
    color: #495057 !important;
    font-size: 14px !important;
}

/* dropdown arrow */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 36px !important;
    right: 8px !important;
}

/* focus state */
.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
    border: 1px solid #b71c1c !important;
    box-shadow: none !important;
    outline: none !important;
}

/* dropdown box */
.select2-container--default .select2-dropdown {
    background: #ffffff !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
}

/* option base style */
.select2-container--default .select2-results__option {
    padding: 8px 12px !important;
    font-size: 14px !important;
    color: #333 !important;
    background: #ffffff !important;
    transition: background 0.2s ease;
}

/* option hover */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #b71c1c !important;
    color: #ffffff !important;
}

/* selected option */
.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #b71c1c !important;
    color: #ffffff !important;
}
/* Select2 search input */
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 4px 8px;
}

/* search input focus = 1px red */
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    border: 1px solid #b71c1c !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Select2 clear (X) icon remove */
.select2-container--default .select2-selection__clear {
    display: none !important;
}

/* hide multi-select search box */
.select2-container--default .select2-search--inline .select2-search__field {
    display: none !important;
}


/* Select2 multi select selected tags = RED */
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #b71c1c !important;
    border: 1px solid #b71c1c !important;
    color: #fff !important;
}

/* remove icon inside tag */
.select2-container--default .select2-selection__choice__remove {
    color: #fff !important;
    margin-right: 5px !important;
}

/* hover remove icon */
.select2-container--default .select2-selection__choice__remove:hover {
    color: #000 !important;
}



