@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sen:wght@400;700;800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --rz-primary-color: #516CD3;
    --rz-primary-color-light: #D1E1FE;
    --rz-secondary-color-light: #F1F3F6;
    --rz-secondary-color: #DDE2EE;
    --rz-secondary-color-dark: #33333383;
    --rz-dark-color: #000000;
    --rz-light-color: white;
    --rz-gray-color: #f1f3f6;
}
html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;

}


.border-color-primary {
    border-color: var(--rz-primary-color);
}

.bg-color-primary {
    background-color: var(--rz-primary-color);
}

.color_primary,
.color-primary {
    color: var(--rz-primary-color);
}

.navbar {
    background: var(--rz-gray-color);
}

.brand-logo {
    height: 45px;
}

.main-content {
    position: relative;
    min-height: calc(100vh - 71px);
}

.top_left {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top_right {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.bottom_right {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.min-vh-50 {
    min-height: 50vh;
}

.welcome_heading h1 {
    font-weight: 700;
    font-size: 52px;
}

.welcome_heading h2 {
    font-weight: 600;
    font-size: 42px;
    color: var(--rz-primary-color);
}

.user-img {
    height: 230px;
    width: 230px;
    border-radius: 20px;
    object-fit: cover;
    border: 2px solid var(--rz-primary-color);
}

.care-option .card {
    width: 18rem;
    height: 16.2rem;
    justify-content: space-around;
    transition: all .5s ease;
}

.care-option .card:hover {
    transform: translateY(-10px);
}

.border-color-light {
    border-color: var(--rz-light-color);
}

.bg-color-secondary-light {
    background-color: var(--rz-gray-color);
}

.care-option .card .img-container,
.admin-panel-care-option .card .img-container {
    height: 9rem;
    width: 9rem;
    background-color: var(--rz-light-color);
}

.care-option .card span,
.admin-panel-care-option .card span {
    font-size: 2rem;
    font-weight: 600;
    color: var(--rz-primary-color);
}

.shadow-secondary-lg {
    box-shadow: 14.41441535949707px 14.41441535949707px 34.59459686279297px 0px #DDE2EE, -14.41441535949707px -14.41441535949707px 34.59459686279297px 0px #FFFFFF, 0px 0px 28.82883071899414px 0px #0000000A inset, 28.82883071899414px -28.82883071899414px 28.82883071899414px 0px #FFFFFF40 inset;
}

.care-option a {
    text-decoration: none;
}

.my-profile {
    border: 1px solid var(--rz-primary-color);
    border-radius: 20px;
}

.my-profile input,
.new-user input,
.add-provider-form input,
.task-record-serach-bar input {
    border-color: var(--rz-primary-color);
    box-shadow: 10px 10px 24px 0px #DDE2EE80, -10px -10px 24px 0px #FFFFFF, 0px 0px 20px 0px #0000000A inset, -10px -10px 20px 0px #FFFFFF26 inset;
}

.theme-btn {
    background-color: var(--rz-primary-color) !important;
    color: var(--rz-light-color) !important;
    box-shadow: 0px 0px 10px 0px #0000001A !important;
    border: 1px solid var(--rz-light-color) !important;
}

.theme-light-btn {
    background-color: transparent !important;
    color: var(--rz-primary-color) !important;
    box-shadow: 0px 0px 10px 0px #0000001A !important;
    border: 1px solid var(--rz-primary-color) !important;
}

.task_template_table tbody tr th,
.task_record_table tbody tr th {
    color: var(--rz-primary-color);
}


/* task template table  */
thead {
    padding: 10px 20px;
    margin: 1rem 0;
    border: 1px solid #fff;
    border-radius: 50px;
    color: #fff;
}


tr td:first-child,
tr th:first-child {
    border-top-left-radius: 10px;
}

tr td:last-child,
tr th:last-child {
    border-top-right-radius: 10px;
}

tr td:last-child,
tr th:last-child {
    border-bottom-right-radius: 0;
}

tr td:first-child,
tr th:first-child {
    border-bottom-left-radius: 0;
}

table {
    border-collapse: separate;
    border-spacing: 0 7px;
}

th {
    font-weight: bold;
    color: var(--rz-light-color) !important;
}

.table>:not(caption)>*>* {
    background: transparent;
}

tbody th,
tbody td {
    margin-top: 1rem;
    border: 1px solid var(--rz-primary-color);
}

.feedback-container {
    width: 100%;
    max-width: 950px;
    backdrop-filter: blur(2px);
    background-color: #ffffffed;
    color: var(--rz-light-color);
    border-radius: 10px;
    padding: 2rem;
    margin: auto;
    font-family: "Jost";
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #516cd3, #415ecc);
    padding: 1rem;
    border-radius: 6px 6px 0 0;
}

.feedback-container .card-body {
    /* height: 290px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feedback-header .title {
    font-weight: bold;
    font-size: 1.5rem;
}

.feedback-header .question-number {
    background-color: #2f4dbd;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
}

.question-box {
    background-color: var(--rz-light-color);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

.rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0b1b66;
    padding: 1.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.rating-label {
    flex: 1;
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
    color: var(--rz-primary-color);
}

.question-box h5 {
    color: var(--rz-primary-color);
}

.rating-buttons {
    display: flex;
    gap: 10px;
}

.rating-buttons button {
    background-color: var(--rz-primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s ease;
}

.rating-buttons button:hover {
    background-color: #339eff;
    transform: translateY(-5px);
} 
.animation-wrapper {
    background: URL("https://www.quiz-maker.com/images/anim21.svg") 100% 100% / cover no-repeat;
    overflow: auto;
    height: calc(100vh - 71px);
    display: flex;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c5cae98c;
    backdrop-filter: blur(0.5px);
}