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

a {
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    padding: 0;
    margin: 0;
}

.top-nav-mian {
    height: 80px;
    background-color: var(--secondary-bg-color);
    display: flex;
    justify-content: space-between;
    align-self: center;
    position: fixed;
    width: 100%;
    top: 0;
    align-items: center;
    z-index: 1010;
}

.dark .auth-section .auth-left-section .auth-logo-wrapper svg path {
    fill: white;
    stroke: none;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: start;
    min-width: 250px;
    margin-left: 60px;
}

.dark .logo-section svg path {
    fill: white;
    stroke: none;
}

.nav-detail-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-right: 20px;
}

.toggle-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.toggle-slot {
    position: relative;
    height: 50px;
    width: 75px;
    border: 5px solid transparent;
    border-radius: 15px;
    background-color: #1c7db0;
    transition: background-color 250ms;
}

.toggle-checkbox:checked~.toggle-slot {
    background-color: #181d23;
}

.toggle-button {
    position: absolute;
    top: 5px;
    left: 5px;
    height: 30px;
    width: 30px;
    border-radius: 10px;
    background-color: white;
    transition: background-color 250ms,
        transform 500ms cubic-bezier(0.26, 2, 0.46, 0.71);
}

.toggle-checkbox:checked~.toggle-slot .toggle-button {
    background-color: #4d5e7a;
    transform: translateX(25px);
}

/* Sun Icon */
.sun-icon {
    color: #ffbb52;
    font-size: 18px;
}

.sun-icon-wrapper {
    position: absolute;
    z-index: 1;
    top: 6px;
    left: 9px;
    opacity: 1;
    transition: opacity 250ms ease,
        transform 500ms cubic-bezier(0.26, 2, 0.46, 0.71);
}

.toggle-checkbox:checked~.toggle-slot .sun-icon-wrapper {
    opacity: 0;
    transform: translateX(20px);
}

/* Moon Icon */
.moon-icon {
    color: white;
    font-size: 18px;
}

.moon-icon-wrapper {
    position: absolute;
    top: 6px;
    right: 9px;
    opacity: 0;
    transition: opacity 250ms ease,
        transform 500ms cubic-bezier(0.26, 2.5, 0.46, 0.71);
}

.toggle-checkbox:checked~.toggle-slot .moon-icon-wrapper {
    opacity: 1;
    transform: translateX(0);
}

.notify-icon {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    background-color: var(--notify-icon-bg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.user-profile-section {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 200px;
    position: relative;
}

.user-profile-section h1 {
    font-size: 1.2rem;
    color: var(--user-name-text-nav);
    font-weight: 500;
}

.user-profile-section .user-image {
    height: 50px;
    width: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.user-profile-section svg {
    width: 15px;
    height: 8px;
}

.profile-drop-down {
    position: absolute;
    min-width: 180px;
    top: 70px;
    right: 0px;
    display: none;
}

.profile-drop-down ul {
    border-radius: 10px;
    background-color: var(--secondary-bg-color);
    padding: 0;
    margin: 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}

.profile-drop-down ul li {
    height: 50px;
    list-style: none;
}

.profile-drop-down ul li a {
    color: var(--secondary-text-color);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
}

.profile-drop-down ul li a:hover {
    background-color: var(--notify-icon-bg);
}

.profile-drop-down ul li a svg {
    height: auto;
}

#dropdownImage {
    cursor: pointer;
}

#dropdownImage path {
    stroke: var(--secondary-text-color);
}

#dropdownContent ul .setting-li a svg path {
    stroke: var(--secondary-text-color);
}

.toogle-button {
    display: none;
}

.toogle-button div {
    width: 35px;
    height: 5px;
    background-color: var(--toogle-color);
    margin: 6px 0;
}

.side-bar-toogle {
    display: none;
    z-index: 6;
}

.side-bar-toogle ul li a svg path {
    stroke: var(--secondary-text-color);
}

#dropdownContent ul li .logout-side {
    color: red !important;
}

.logout-sm {
    color: red !important;
}

.side-bar-toogle ul li .logout-sm svg path {
    stroke: red;
}

.logout-modal {
    text-align: center;
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
}

.logout-modal h1 {
    font-size: 1.5rem;
    font-weight: 400;
}

.logout-modal-footer {
    width: 70%;
    display: flex;
    border: none;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto;
}

.logout-modal-footer button {
    width: 40%;
}

.cancel-button {
    background-color: white;
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
    border-radius: 10px;
}

.logout-button {
    background-color: var(--log-out-button);
    color: white;
    border-radius: 10px;
}

.cancel-button:hover {
    background-color: white;
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
    border-radius: 10px;
}

.logout-button:hover {
    background-color: var(--log-out-button);
    color: white;
    border-radius: 10px;
}

@media screen and (max-width: 991px) {
    .notify-icon {
        display: none;
    }

    .user-profile-section {
        display: none;
    }

    .side-bar-toogle {
        display: block;
    }

    .toogle-button {
        display: block;
        cursor: pointer;
    }

    .nav-wrapper {
        position: relative;
    }

    .side-bar-toogle {
        position: fixed;
        width: 250px;
        top: 100px;
        border-radius: 0px 20px 20px 0px;
        overflow: hidden;
        left: -250px;
        transition: all 1s;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .side-bar-toogle-slider {
        left: 0;
        z-index: 100;
    }

    .side-bar-toogle ul {
        padding: unset;
        background-color: var(--secondary-bg-color);
        width: 100%;
        height: calc(100vh - 100px);
        margin: 0;
        padding-top: 20px;
        /* padding-left: 20px; */
    }

    .side-bar-toogle ul li {
        list-style: none;
        height: 60px;
    }

    .side-bar-toogle ul li a {
        color: var(--secondary-text-color);
        width: 100%;
        height: 100%;
        display: flex;
        gap: 1rem;
        align-items: center;
        padding-left: 20px;
    }

    .side-bar-toogle ul .side-bar-user img {
        width: 50px;
        height: 50px;
        border-radius: 50px;
    }

    .side-bar-toogle ul .side-bar-user {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .side-bar-user h1 {
        font-size: 1.5rem;
        color: var(--secondary-text-color);
    }

    .side-bar-toogle ul li a:hover {
        background-color: var(--notify-icon-bg);
    }
}

@media screen and (max-width: 400px) {
    .logo-section {
        min-width: 150px;
    }

    .logo-section svg {
        width: 130px;
    }
}

/* super-dashboard */
.main-container {
    background-color: var(--notify-icon-bg);
    min-height: 100vh;
    height: 100%;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 30px;
}

.superadmin-dashboard-header {
    background-color: var(--secondary-bg-color);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-headings h2 {
    font-size: 1.5rem;
    color: var(--secondary-text-color);
}

.dashboard-headings span {
    font-size: 1.8rem;
}

.dashboard-headings h1 {
    font-size: 2rem;
    color: var(--main-heading);
}

.dashboard-heading-button {
    display: flex;
    gap: 20px;
}

.dashboard-heading-button a {
    border: none;
    color: var(--white-text);
    background-color: var(--create-button);
    padding: 10px 25px;
    border-radius: 15px;
    font-size: 1rem;
}

.super-dashboard-content {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.total-list-section {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tab-section {
    width: 80%;
    padding: 20px 0px;
}

.comon-cards {
    background-color: var(--secondary-bg-color);
    border-radius: 20px;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.total-card {
    background-image: url(../../images/mark.png);
}

.active-card {
    background-image: url(../../images/active-mark.png);
}

.deactive-card {
    background-image: url(../../images/deactive-mark.png);
}

.pending-card {
    background-image: url(../../images/pending-mark.png);
}

.comon-cards h1 {
    font-size: 2.5rem;
    color: var(--secondary-text-color);
}

.comon-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-text-color);
}

.card-head-img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-card .comon-card-head .card-head-img {
    background-color: #272d6b;
}

.active-card .comon-card-head .card-head-img {
    background-color: #5ca044;
}

.deactive-card .comon-card-head .card-head-img {
    background-color: #ffbf42;
}

.pending-card .comon-card-head .card-head-img {
    background-color: #ff1e1e;
}

.comon-card-head h1 {
    color: var(--secondary-text-color);
    font-size: 1.2rem;
}

.tabs-head {
    background-color: var(--secondary-bg-color);
    width: 100%;
    border-radius: 20px;
    padding: 10px 20px;
}

.tabs-body {
    margin-top: 20px;
}

.nav-tabs {
    gap: 1rem;
}

.nav-tabs .nav-link.active {
    border: none;
    color: gray;
    background-color: transparent;
}

.nav-tabs {
    border-bottom: none;
}

.nav-link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555555;
}

.nav-link:hover {
    font-weight: 600;
    color: #272d6b;
    border: none;
}

.company-logo-comon {
    height: 60px;
    width: 60px;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
}

.company-logo-comon img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.common-card-head {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.common-company-name h1 {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
}

.tabs-body {
    margin-top: 20px;
}

.common-company-name p {
    font-size: 0.8rem;
    word-break: break-all;
    color: var(--companny-email);
}

.tabs-main-cards {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); */
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
}

@media screen and (max-width: 943px) {
    .tabs-main-cards {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }
}

@media screen and (max-width: 450px) {
    .tabs-main-cards {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .superadmin-dashboard-header {
        flex-direction: column;
        gap: 2rem;
    }

    .dashboard-headings {
        width: 100%;
    }

    .dashboard-heading-button {
        width: 100%;
        text-align: end;
    }
}

.close-button {
    display: none;
}

.close-button i {
    font-size: 2rem;
    color: var(--secondary-text-color);
}

.comon-company-card {
    background-color: var(--pills-cards);
    border-radius: 20px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: right bottom;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comon-card-body {
    margin-top: 10px;
}

.comon-card-body p {
    width: 100%;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    font-size: 0.8rem;
    line-height: 25px;
    color: var(--secondary-text-color);
}

.comon-card-body p span {
    color: var(--companny-email);
}

.active-status {
    color: #5ca044 !important;
}

.pending-status {
    color: #ffbf42 !important;
}

.rejected-status {
    color: #ff1e1e !important;
}

.pagination-card {
    display: flex;
    justify-content: end;
    margin-top: 20px;
}

.pagination-buttons {
    display: flex;
    gap: 1rem;
}

.control-buton {
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
    border-radius: 10px;
    padding: 7px 15px;
    background-color: white;
}

.active-button {
    background-color: var(--pagination-active) !important;
    color: var(--white-text) !important;
    border: none;
}

.pagination-count {
    border-radius: 10px;
    padding: 7px 15px;
    background-color: var(--secondary-bg-color);
    color: var(--text-gray);
    border: none;
    font-weight: 600;
}

@media screen and (max-width: 1800px) {
    .tab-section {
        padding-left: 20px;
    }
}

@media screen and (max-width: 991px) {
    .super-dashboard-content {
        display: flex;
        flex-direction: column;
    }

    /* .total-list-section {
        min-width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    } */

    .total-list-section {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }

    .tab-section {
        width: 100%;
        padding-left: 0;
    }
}

/* craeate -liencense  */
.form-main-wrapper {
    width: 600px;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.form-main {
    background-color: var(--form-content-bg);
    border-radius: 20px;
    padding: 30px;
    width: 100%;
}

.form-main h1 {
    font-size: 1.5rem;
    color: var(--secondary-text-color);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.form-group label {
    font-size: 0.8rem;
    color: var(--secondary-text-color);
}

.form-group input {
    font-size: 0.9rem;
    padding: 15px;
    border: 1px solid var(--input-field-border);
    border-radius: 10px;
    color: var(--secondary-text-color);
    background-color: var(--input-bg);
}

.form-group input::placeholder {
    color: var(--input-color);
}

.form-group input:focus {
    outline: none;
}

.custom-checkbox {
    width: 1.8rem;
    height: 1.8rem;
    accent-color: var(--create-button);
}

.check-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.8rem !important;
    align-items: center;
    padding-right: 20px;
}

.form-buttons {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 1rem;
}

.submit-button {
    background-color: var(--create-button);
    color: white;
    border-radius: 10px;
    font-size: 0.8rem;
}

.submit-button:hover {
    background-color: var(--create-button);
    color: white;
}

.form-cancel {
    font-size: 0.8rem;
}

@media screen and (max-width: 767px) {
    .form-main-wrapper {
        width: unset;
        min-width: 100%;
        height: auto;
    }


}

/* notifications */

.notify-main {
    background-color: var(--secondary-bg-color);
    border-radius: 20px;
    width: 100%;
}

.notify-main-head {
    padding: 30px;
}

.notify-main-head h1 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    color: var(--secondary-text-color);
}

.notify-main h1 button {
    background-color: transparent;
    border: none;
    font-size: 0.9rem;
    color: var(--main-heading);
}

.common-row-notify {
    padding: 30px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid var(--input-field-border);
    background-color: var(--notification-main-bg);
}

.active-notification {
    background-color: var(--notify-row-bg);
}

.common-row-notify p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.image-section img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.body-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.body-head-sec {
    display: flex;
    gap: 5px;
}

.body-head-sec h1 {
    font-size: 1rem;
    color: var(--secondary-text-color);
}

.body-head-sec p {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
}

.body-head-sec h2 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-text-color);
}

.accept-btn {
    background-color: var(--create-button);
    color: white;
    border-radius: 10px;
    padding: 5px 10px;
    border: none;
}

.deny-btn {
    background-color: white;
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
    border-radius: 10px;
    padding: 5px 10px;
}

.accept-btn:hover {
    background-color: white;
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
}

.deny-btn:hover {
    background-color: var(--create-button);
    color: white;
    border-radius: 10px;
    border: none;
}

.common-row-notify:last-child {
    border-bottom: none;
}

.body-file {
    display: flex;
    gap: 5px;
}

.file-name {
    display: flex;
    flex-direction: column;
}

.file-name p {
    color: var(--companny-email);
    line-height: 15px;
}

.file-name span {
    color: var(--text-gray);
    font-size: 10px;
}

@media screen and (max-width: 445px) {
    .body-head-sec {
        flex-direction: column;
    }
}

/* user-profile */
.profile-main-sec {
    width: 100%;
    background-color: var(--form-content-bg);
    padding: 30px;
    border-radius: 20px;
}

.profile-main-header {
    display: flex;
    justify-content: end;
}

.back-button {
    padding: 10px 20px;
}

.back-button a {
    background-color: var(--create-button);
    color: white;
    border-radius: 10px;
    border: none;
    width: fit-content;
    padding: 10px 20px;
}

.back-button a:hover {
    background-color: white;
    border: 1px solid var(--pagination-Button);
    color: var(--pagination-Button);
}

.profile-header {
    display: flex;
    justify-content: space-between;
}

.profile-image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.profile-image-section img {
    width: 100px;
    border-radius: 10px;
}

.profile-image-section h1 {
    font-size: 1.2rem;
    color: var(--secondary-text-color);
}

.edit-button {
    height: fit-content;
    width: fit-content;
    padding: 5px 15px;
    border: none;
    background-color: transparent;
}

.edit-button svg {
    width: 15px;
}

.edit-button svg path {
    stroke: var(--create-button);
}

.edit-button a {
    color: var(--create-button);
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-content {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-text {
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    color: var(--secondary-text-color);
    width: 33%;
}

.profile-text p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 170px;
}

.profile-text span {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.profile-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.profile-footer p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-text-color);
}

.input--file {
    position: relative;
    color: #7f7f7f;
}

.input--file input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 25px;
}

.profile-user-image {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
}

.profile-user-image img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.camera-section {
    position: absolute;
    right: -5px;
    bottom: -5px;
    background-color: #272d6b;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid white;
}
.camera-section span{
    display: flex !important;
}
.camera-section svg {
    width: 15px;
}

.edit-profile-form {
    margin-top: 20px;
}

.edit-profile-form .form-group input {
    padding: 15px;
    color: var(--text-gray);
}

.modal-content {
    background-color: var(--secondary-bg-color);
}

.logout-modal h1 {
    color: var(--secondary-text-color);
}

.delete-modal {
    text-align: center;
}

.delete-modal h1 {
    font-size: 1.5rem;
    color: var(--secondary-text-color);
}

.no-license {
    color: var(--secondary-text-color);
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type="text"],
.iti input.iti__tel-input[type="tel"] {
    color: var(--secondary-text-color);
    background-color: var(--input-bg);
}

.small-screen-view {
    display: none;
}

@media screen and (max-width: 506px) {
    .tabs-head .hide-sec {
        display: none;
    }

    .small-screen-view {
        display: block;
    }

    .small-screen-view ul {
        width: 100%;
        border: 1px solid rgb(226, 226, 226);
        border-radius: 10px;
    }

    .small-screen-view ul li {
        width: 100%;
        padding: 6px;
    }

    .small-screen-view ul li a {
        width: 100%;
        justify-content: space-between;
        font-size: 0.9rem;
        color: var(--text-gray);
    }

    .nav-link .active {
        color: var(--text-gray);
    }

    .drop-item button {
        font-size: 0.9rem !important;
        color: var(--text-gray);
    }

    .dropdown-menu {
        border-radius: 10px !important;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }

    .dropdown-toggle::after {
        position: absolute;
        right: 10px;
        top: 50%;
    }

    .full-address {
        max-width: 150px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }
}

@media screen and (max-width: 767px) {
    .profile-main-sec {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .form-main {
        margin: 20px;
        width: unset;
    }
}

@media screen and (max-width: 623px) {
    .profile-content {
        flex-direction: column;
    }

    .profile-text {
        width: 100%;
    }

    .profile-header {
        display: flex;
        justify-content: space-between;
        flex-direction: column-reverse;
    }
}


.back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.back-btn img {
    width: 25px;
}

.back-btn h1 {
    font-size: 1.5rem;
    color: var(--secondary-text-color);

}





.email-main-body {
    overflow: auto;
    margin: 20px 0;
    height: calc(100vh - 360px);
    margin-bottom: 30px;
}

.email-main-body.amount-table {
    max-height: 255px;
}

.email-main-body table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    /* overflow: hidden; */
    border-radius: 10px;
    margin-top: 20px;
    overflow-x: auto;
}

.email-main-body table thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.email-main-body table th,
td {
    text-align: left;
    padding: 20px;
    color: var(--secondary-text-color);
    border-left: 1px solid var(--input-field-border);
    min-width: 250px;

}

.email-main-body table th {
    font-weight: 600;
    text-align: left;
    border-left: 1px solid var(--input-field-border);
}

.email-main-body table td {
    text-align: left;
    padding-left: 20px !important;
    white-space: nowrap;
    border-left: 1px solid var(--input-field-border);
    background-color: var(--secondary-bg-color);
}

.email-main-body table thead tr:nth-child(1) {
    background-color: var(--notify-icon-bg);
}

.email-main-body table tr {
    border: 1px solid var(--input-field-border);
}

.email-main-body-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--secondary-bg-color);
    padding: 10px;
}

.email-main-body-head h1 {
    font-size: 1.5rem;
    color: var(--secondary-text-color);
}

.dark .main-container .container-fluid .email-main-wrapper .email-main-header .back-btn svg path {
    stroke: white;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-buttons .common-button {
    border-radius: 10px;
    padding: 7px 15px;
    outline: none;
}

.action-buttons .common-button.copy-button {
    background-color: var(--create-button);
    border: none;

}

.copy-button img {
    width: 20px;
    height: 20px;
}

.action-buttons .common-button.delete-button {
    background-color: white;
    border: 1px solid var(--pagination-Button)
}

.action-td {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 576px) {
    .dashboard-heading-button a {
        width: 100%;
        text-align: center;
    }

    .logo-section {
        margin-left: 20px;
    }

    .email-main-body {
        height: calc(100vh - 130px);
    }

    .email-main-body-head {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .filter-section {
        width: 100%;
    }

    .filter-section .form-group {
        width: 50%;
        min-width: 50%;
    }

    .filter-section .form-group input {
        width: 100% !important;
    }

    .profile-main-sec {
        margin: 20px;
    }




}