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

:root {
    --primary-color: #475EAC;
    --primary-color-100: #99cff1;
    --secondary-color: #333333;
    --white-color: #fff;
    --bg-color: #F2F5F7;
    --black-color: #000;
    --dark-color: #202020;
    --text-color: #444444;
    --primary-font: 'Poppins';
    --gutter-padding: 15px;
    --shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.18);
}

html,
body {
    scroll-behavior: smooth;
    transform: all 0.3s;
    font-size: 16px;
    font-family: var(--primary-font);
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
}

span {
    display: inline-block;
}

h2,
h3 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

h3 {
    font-size: 18px;
}

p {
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
button {
    background-color: transparent;
    border: none;
    outline: none;
}
.w-1 {
    width: 8.3333%;
}

.w-2 {
    width: 16.6666%;
}

.w-3 {
    width: 25%;
}

.w-4 {
    width: 33.3333%;
}

.w-5 {
    width: 41.6666%;
}

.w-6 {
    width: 50%;
}

.w-7 {
    width: 58.3333%;
}

.w-8 {
    width: 66.6666%;
}

.w-9 {
    width: 75%;
}

.w-10 {
    width: 83.3333%;
}

.w-11 {
    width: 91.6666%;
}

.w-12 {
    width: 100%;
}

.display-flex {
    display: flex;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.slidebar-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2;
    display: none;
}

.slidebar-overlay.active {
    display: block;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    background-color: var(--white-color);
    padding: 16px 40px 16px 0px;
}

#toggleSidebar {
    outline: none;
    border: none;
    background-color: transparent;
}

.slidebar {
    width: 300px;
    height: 100vh;
    position: fixed;
    background-color: var(--white-color);
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    box-shadow: 0px 6px 40px 0px rgba(0, 0, 0, 0.10);
    z-index: 3;
    background-image: url('../img/slidebar-bg\ copy-01.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.main {
    height: auto;
    margin-left: 300px;
    padding-top: 100px;
    background-color: var(--bg-color);
}

.logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 60px 0px 60px;
}

.logo img {
    width: 200px;
}

nav ul li a span,
.logout a span {
    line-height: 0;
}

nav ul li a,
.logout a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 42px;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 30px;
    font-weight: 500;
}

.logout {
    margin-top: auto;
    margin-bottom: 150px;

}

li.active a,
li.active a svg path {
    background-color: var(--bg-color);
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.notification {
    position: relative;
}

.notification span {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    font-size: 8px;
    text-align: center;
    line-height: 12px;
    color: var(--white-color);
    position: absolute;
    top: 0;
    right: 0;
}

.notification img {
    width: 22px;
}

.user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user .user-img img {
    width: 50px;
    height: 50px;
}

.top-bar {
    width: 100%;
    background-color: var(--white-color);
    padding: 24px 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.heading h2 {
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.heading p {
    color: var(--text-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

#toggleSidebar {
    display: none;
}

.search-from {
    width: 700px;
    height: 60px;
    background-color: var(--white-color);
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    display: flex;
    padding: 12px 20px;
}

.search-from form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-from input[type="search"] {
    border: none;
    outline: none;
    height: 100%;
    width: 100%;
}

.search-from input::placeholder {
    font-family: var(--primary-font);
    font-size: 18px;
}

.search-from button {
    border: none;
    outline: none;
    background-color: transparent;
}

.tab {
    display: none;
    gap: 12px;
    margin: 12px;
}

.tab .tablinks {
    width: 100%;
    margin-top: 20px;
    background-color: #eeeeee;
    border: none;
    outline: none;
    padding: 8px;
    border-radius: 8px;
}

.tab .tablinks.active {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.page-wrapper {
    padding: 16px;
    display: flex;
    gap: 16px;
    border-radius: 10px;
    overflow: hidden;
}

.card {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 0;
}
.filter-container{
    display: flex;
    align-items: center;
    gap: 12px;
}
.filter {
    gap: 16px;
}
.filter-button{
    line-height: 0;
}
#filterDropdown{
  display: none;
}
.filter-icon{
    display:none;
}
.date-filter {
    gap: 16px;
}
#activityFilter{
    width: 150px;
}
.date-filter>div {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    padding: 0px 16px;
    border-radius: 10px;

}

.date-filter input,
.filter select {
    border: none;
    outline: none;
    background-color: var(--white-color);
    font-size: 16px;
    font-family: var(--primary-font);
    padding: 12px;

}

.filter input::placeholder {
    font-size: 16px;
    font-family: var(--primary-font);
}

.card-header {
    background-color: var(--white-color);
    padding: 16px;
}

.card-header h3,
.contact-grid h3 {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.card-header p {
    color: var(--secondary-color);
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 30px;
}

.card-body {
    padding-bottom: 16px;
    overflow: auto;
}

.card-body table {
    width: 100%;
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    border: 0;
    border-collapse: collapse;
}

.card-body table thead {
    background-color: #eeeeee;
    color: var(--secondary-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
    position: sticky;
    top: 0;
}

.card-body table thead tr th {
    padding: 8px;
}

.card-body table tbody tr td {
    padding: 8px;
}

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

.action button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.contact-description {
    background-color: #eeeeee;
    padding: 16px;
}

.contact-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 26px;
    padding: 16px;
}

.contact-grid h3 {
    margin-bottom: 12px;
}

.contact-grid button {
    width: 184px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #444;
    background: rgba(71, 94, 172, 0.00);
    margin-top: 12px;
    display: block;
}

.contact-grid ul {
    list-style: disc;
    padding-left: 40px;
}

.contact-grid ul li {
    margin-top: 8px;
    margin-bottom: 8px;
}


/* sign-up */
.sign-up {
    width: 100vw;
    height: 100vh;
    display: flex;
}

.sign-up-bg {
    height: 100vh;
    background-image: url('../img/Sign\ Up-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-up-logo {
    width: 60%;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.33);
    background: rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
}

.sign-up-logo img {
    width: 600px;
}

.sign-up-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.sign-up-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.sign-up-form h2 {
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 600px;
}

.sign-up-form .input-icons {
    height: 50px;
    border: 1px solid #C3C3C3;
    display: flex;
    align-items: center;
    column-gap: 26px;
    padding: 16px;
    border-radius: 10px;
}

.sign-up-form form input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--primary-font);

}

.sign-up-form form input::placeholder {
    font-family: var(--primary-font);

}

.sign-up-form form button {
    height: 46px;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--bg-color);
    font-family: var(--primary-font);
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 30px;
}

.sign-up-form form button a {
    color: var(--white-color);
}


.profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 36px;
}

.personal-information {
    grid-row-start: 1;
    grid-column-start: 1;
    grid-row-end: 2;
    grid-column-end: 2;
}

.health-information {
    grid-row-start: 1;
    grid-column-start: 2;
    grid-row-end: 2;
    grid-column-end: 3;
}

.daily-activity-details {
    grid-row-start: 1;
    grid-column-start: 3;
    grid-row-end: 2;
    grid-column-end: 4;
}

.work-information {
    grid-row-start: 2;
    grid-column-start: 1;
    grid-row-end: 3;
    grid-column-end: 2;
}

.claim-information {
    grid-row-start: 2;
    grid-column-start: 2;
    grid-row-end: 3;
    grid-column-end: 3;
}

.additional-notes {
    grid-row-start: 3;
    grid-column-start: 1;
    grid-row-end: 4;
    grid-column-end: 3;
}

.profile-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
}

.profile-card .card-header {
    background-color: #eeeeee;
    text-align: center;
}

.profile-card .card-body {
    padding: 12px 26px;
}

.profile-card .card-body ul li {
    margin: 12px 0px;
}

.profile-card .card-body ul li p {
    display: inline;
    margin-right: 16px;
}

.profile-card .card-body ul li span,
.primary-goals ul li,
.summary-of-the-day ul li {
    color: #9C9494;
    line-height: 22px;
}

.profile-card .card-body ul li p span {
    font-size: 12px;
}

.primary-goals ul,
.summary-of-the-day ul {
    list-style: disc;
    padding-left: 40px;
}




/* add-client */
.add-client {
    cursor: pointer;
}


/* Style for the overlay */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 3;
}

/* Style for the modal */
#openModal {
    background-color: transparent;
    border: none;
    outline: none;
}

.modal {

    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    z-index: 4;
    width: 50%;
    height: 70%;
    overflow: hidden;
    overflow-y: auto;
    padding-top: 46px;
    background: rgb(255, 255, 255);
    background: linear-gradient(45deg, rgba(255, 255, 255, 1) 71%, rgba(230, 235, 255, 1) 100%);
}


.modal-content {
    position: relative;
}

/* Style for the close button */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.modal-content h2 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 26px;
    color: var(--black-color);
    font-weight: 500;
}

.from-grid {
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    padding: 26px;
}

.from-grid>div {
    display: flex;
    flex-direction: column;
}

.add-client input,
.add-client textarea,
.dropdown button {
    border: none;
    outline: none;
    border-radius: 10px;
    border: 1px solid #C3C3C3;
    padding: 12px;
    font: var(--primary-font);
    margin-top: 8px;
    margin-bottom: 16px;
}

.add-client textarea {
    height: 100px;
}

.add-client input::placeholder {
    font-family: var(--primary-font);
}

.register-btn {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown button {
    background-color: var(--white-color);
    width: 100%;
}

.dropdown-content {
    width: 100%;
    padding: 12px;
    display: none;
    position: absolute;
    background-color: var(--bg-color);
    border-radius: 10px;
    z-index: 1;
}

.dropdown-content a {
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown.active .dropdown-content {
    display: block;
}


.add-activity {
    justify-items: center;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
}

::-webkit-scrollbar {
    appearance: none;
    width: 5px;
    background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
    background-color: rgb(142, 142, 142);
    border-radius: 10px;
}
