.toast-container {
}
.toast {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
}
.toast-enter {
    transform: translateX(100%) !important;
    opacity: 0;
}
.toast-container.expanded .toast {
    position: relative !important;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    margin-bottom: 0.5rem !important;
    pointer-events: auto !important;
}
.toast-container:not(.expanded) .toast {
    pointer-events: none;
}
.toast-container:not(.expanded) .toast:last-child {
    pointer-events: auto;
}


.show-all-button {
    position: absolute;
    top: -150px;
    right: 0;
    background: rgba(30, 41, 59, 0.9);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    cursor: pointer;
    z-index: 101;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expanded .show-all-button {
    top: -20px
}
.show-all-button.visible {
    opacity: 1;
}
.toast-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: rgb(59, 130, 246);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.send {
    .animated-button {
        position: relative;
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 5px 36px;
        border: 4px solid;
        border-color: transparent;
        font-size: 16px;
        background-color: inherit;
        border-radius: 100px;
        font-weight: 600;
        color: rgb(47, 106, 255);
        box-shadow: 0px 1px 4px 0px rgba(47, 106, 255, 0);
        cursor: pointer;
        overflow: hidden;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button svg {
        position: absolute;
        width: 24px;
        fill: rgb(47, 106, 255);
        z-index: 9;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .arr-1 {
        right: 16px;
    }

    .animated-button .arr-2 {
        left: -25%;
    }

    .animated-button .circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: rgb(47, 106, 255);
        border-radius: 50%;
        opacity: 0;
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button .text {
        position: relative;
        z-index: 1;
        transform: translateX(-12px);
        transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animated-button:hover {
        box-shadow: 0 0 0 12px transparent;
        color: #dddddd;
        border-radius: 12px;
    }

    .animated-button:hover .arr-1 {
        right: -25%;
    }

    .animated-button:hover .arr-2 {
        left: 16px;
    }

    .animated-button:hover .text {
        transform: translateX(12px);
    }

    .animated-button:hover svg {
        fill: #dddddd;
    }

    .animated-button:active {
        scale: 0.95;
        box-shadow: 0 0 0 4px rgb(7, 100, 212);
    }

    .animated-button:hover .circle {
        width: 220px;
        height: 220px;
        opacity: 1;
    }

}

.header-refreshButton {
    .button-ref {
        color: white;
        background-color: #222;
        font-weight: 500;
        border-radius: 0.5rem;
        font-size: 0.9rem;
        line-height: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        padding-top: 0.2rem;
        padding-bottom: 0.2rem;
        cursor: pointer;
        text-align: center;
        margin-right: 0.5rem;
        display: inline-flex;
        align-items: center;
        border: none;
        transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .button-ref:hover {
        background-color: #333;
    }

    .button-ref svg {
        display: inline;
        width: 1.1rem;
        height: 1.1rem;
        margin-right: 0.75rem;
        color: white;
    }

    .button-ref:focus:not([id="filterButton"]) svg {
        animation: spin_357 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .button-ref:focus:not([id="refreshButton"]) svg {
        animation: spin_357_s 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }


}

@keyframes spin_357 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin_357_s {
    0% {
        transform: rotate(0deg);
    }

    30% {
        transform: rotate(-30deg);
    }

    60% {
        transform: rotate(30deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    --uib-color: #5D3FD3;
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}

.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}

.three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--uib-color);
    border-radius: 50%;
}

.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wobble1 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}

@keyframes wobble2 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}

.emailList-top {
    .button {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: rgb(20, 20, 20);
        border: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 0px 20px 0px rgba(180, 160, 255, 0.253);
        cursor: pointer;
        transition-duration: 0.3s;
        overflow: hidden;
        position: relative;
    }

    .svgIcon {
        width: 12px;
        transition-duration: 0.3s;
    }

    .svgIcon path {
        fill: white;
    }

    .button:hover {
        border-radius: 50px;
        transition-duration: 0.3s;
        background-color: rgb(181, 160, 255);
        align-items: center;
    }

    .button:hover .svgIcon {
        /* width: 20px; */
        transition-duration: 0.3s;
        transform: translateY(-70%);
    }

    .button::before {
        position: absolute;
        bottom: -20px;
        content: "Back to Top";
        color: white;
        /* transition-duration: .3s; */
        font-size: 0px;
    }

}

.company-email {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.02));
    position: relative;
    overflow: hidden;
}
.company-email:hover {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05)) !important;
}
.company-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #3b82f6, #1d4ed8);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
}
.company-email::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10px;
    width: 20px;
    height: 60%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    filter: blur(5px);
    z-index: 0;
}
.company-email .company-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.5);
}
.company-email .company-star {
    position: absolute;
    right: 8px;
    top: 8px;
    color: #3b82f6;
    animation: twinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.5));
}
@keyframes twinkle {
    0% { opacity: 0.4; transform: rotate(0deg) scale(0.8); }
    50% { opacity: 1; transform: rotate(15deg) scale(1.1); }
    100% { opacity: 0.4; transform: rotate(0deg) scale(0.8); }
}
.avatar-loading {
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.avatar-loaded {
    opacity: 1;
}

#head-email-verify {

    .popup {
        position: relative;
        width: 320px;
        height: fit-content;
        background: #FFFFFF;
        box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
        border-radius: 13px;
    }

    .form {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
    }

    .icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 60px;
        background: #ECF1FD;
        box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5);
        border-radius: 5px;
    }

    .note {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .title {
        font-style: normal;
        font-weight: 700;
        font-size: 17px;
        line-height: 24px;
        color: #2B2B2F;
    }

    .subtitle {
        font-style: normal;
        font-weight: 600;
        font-size: 13px;
        line-height: 18px;
        color: #5F5D6B;
    }

    .input_field {
        width: 100%;
        height: 42px;
        padding: 0 0 0 12px;
        border-radius: 5px;
        outline: none;
        border: 1px solid #e5e5e5;
        filter: drop-shadow(0px 1px 0px #efefef) drop-shadow(0px 1px 0.5px rgba(239, 239, 239, 0.5));
        transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
    }

    .input_field:focus {
        border: 1px solid transparent;
        box-shadow: 0px 0px 0px 1px #2B2B2F;
        background-color: transparent;
    }

    .form button.submit {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 10px 18px;
        gap: 10px;
        width: 100%;
        height: 42px;
        background: linear-gradient(180deg, #4480FF 0%, #115DFC 50%, #0550ED 100%);
        box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5);
        border-radius: 5px;
        border: 0;
        font-style: normal;
        font-weight: 600;
        font-size: 12px;
        line-height: 15px;
        color: #ffffff;
    }

}

.translate-y-full-c {
    --tw-translate-y: 150%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.sidebar {
    .Btn {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 17px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        transition-duration: .3s;
        box-shadow: none;
        background: none !important;
        border: 1px solid #eeeeee00;
    }

    .sign {
        width: 100%;
        transition-duration: .3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sign-l {
        width: 100%;
        transition-duration: .3s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text {
        position: absolute;
        right: 0%;
        width: 0%;
        opacity: 0;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        transition-duration: .3s;
    }

    .Btn:hover {
        border: 1px solid #444444c9;

        width: 125px;
        transition-duration: .3s;
    }

    .Btn:hover .sign {
        width: 30%;
        transition-duration: .3s;
        padding-left: 20px;
    }

    .Btn:hover .sign-l {
        width: 30%;
        transition-duration: .3s;
        padding-left: 16px;
    }

    .Btn:hover .text {
        opacity: 1;
        width: 70%;
        transition-duration: .3s;
        padding-right: 10px;
    }

    .Btn:active {
        transform: translate(2px, 2px);
    }
}

.sidebar.collapsed {
    .Btn:hover {
        transform: translateX(45px);
        box-shadow: 1px 1px 18px #161616;
        border: 1px solid #444444c9;
        width: 125px;
        transition-duration: .3s;
    }
}


.bg-primary {
    background-color: hsl(0 0% 98%);
    color: hsl(240deg 3.7% 15.9%);
}

.border-input {
    border-color: hsl(240 3.7% 15.9%);
}

.data-\[state\=active\]\:shadow[data-state=active] {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px -1px rgba(0, 0, 0, .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.data-\[state\=active\]\:bg-background[data-state=active] {
    background-color: #28282880
}

.bg-muted {
    background-color: hsl(240 3.7% 15.9%);
}

.hover\:bg-primary\/90:hover {
    background-color: hsl(0 0% 98%/ .9);
}

.bg-border {
    background-color: hsl(240deg 3.7% 15.9%)
}

.hover\:text-accent-foreground:hover {
    color: hsl(0deg 0% 98%);
}

.hover\:bg-accent:hover {
    background-color: hsl(240deg 3.7% 15.9%);
}

.border-grid {
    border-color: hsl(240deg 3.7% 15.9%);
}

@supports ((-webkit-backdrop-filter:var(--tw)) or (backdrop-filter:var(--tw))) {
    .supports-\[backdrop-filter\]\:bg-background\/60 {
        background-color: #10101087;
    }
}

.title-white {
    font-style: normal;
    font-weight: 700;
    font-size: 17px;
    line-height: 24px;
    color: #cdcdd7;
}

#dynamic-drawer {
    box-shadow: 0px -20px 25px -5px rgb(0 0 0 / 0.4),
        -1px -10px 10px -6px rgb(0 0 0 / 0.4),
        0px -20px 25px 20px #0b0b0b45;
}

.bg-gray-900\/90 {
    background-color: rgb(0 0 0 / 75%) !important;
}

.bg-gray-900\/30 {
    background-color: rgb(0 0 0 / 44%) !important;
}

.bg-gray-900\/50 {
    background-color: rgb(49 49 49 / 50%) !important;
}

.border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(88 88 88 / var(--tw-border-opacity)) !important;
}

.z-500 {
    z-index: 500;
}

.transition-cs {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-open {
    transform: scale(0.95);
}

.bg-slate-800\/50 {
    background-color: rgb(32 32 32 / 50%) !important;
}

.line-wobble {
    --uib-size: 80px;
    --uib-speed: 1.55s;
    --uib-color: #a2a2a2;
    --uib-line-weight: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--uib-line-weight);
    width: var(--uib-size);
    border-radius: calc(var(--uib-line-weight) / 2);
    overflow: hidden;
    transform: translate3d(0, 0, 0);
}

.line-wobble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--uib-color);
    opacity: 0.1;
}

.line-wobble::after {
    content: '';
    height: 100%;
    width: 100%;
    border-radius: calc(var(--uib-line-weight) / 2);
    animation: wobble var(--uib-speed) ease-in-out infinite;
    transform: translateX(-90%);
    background-color: var(--uib-color);
}

@keyframes wobble {

    0%,
    100% {
        transform: translateX(-90%);
    }

    50% {
        transform: translateX(90%);
    }
}
.flex-1.dialog-over {
    filter: brightness(0.5) contrast(1.1);
    transform: scale(0.98) perspective(1000px) translateY(13px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, filter;
    position: relative;
    isolation: isolate;
}

.flex-1.dialog-over::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.flex-1.dialog-over:hover::before {
    opacity: 1;
}

.bg-background {
    background-color: rgb(17 17 17) !important
}

.settings-goback {
    .button {
        display: block;
        position: relative;
        width: 56px;
        height: 56px;
        margin: 0;
        overflow: hidden;
        outline: none;
        background-color: transparent;
        cursor: pointer;
        border: 0;
    }

    .button:before,
    .button:after {
        content: "";
        position: absolute;
        border-radius: 11px;
        inset: 4px;
    }

    .button:before {
        border: 2px solid #4a4a4a;
        transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
            transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
    }

    .button:after {
        border: 4px solid #9f96f0;
        transform: scale(1.3);
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
            transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;
    }

    .button:hover:before,
    .button:focus:before {
        opacity: 0;
        transform: scale(0.7);
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
            transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .button:hover:after,
    .button:focus:after {
        opacity: 1;
        transform: scale(1);
        transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
            transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
    }

    .button-box {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
    }

    .button-elem {
        display: block;
        width: 20px;
        height: 20px;
        margin: 17px 18px 0 18px;
        transform: rotate(180deg);
        fill: #f0eeef;
    }

    .button-elem-s {
        display: block;
        width: 20px;
        height: 20px;
        margin: 17px 18px 0 18px;
        fill: #f0eeef;
    }

    .button:hover .button-box,
    .button:focus .button-box {
        transition: 0.4s;
        transform: translateX(-56px);
    }

}

.border-muted {
    border-color: hsl(240 3.7% 15.9%);
}

.search-tag-contacts {
    background: linear-gradient(to right, #312e81, #1f2937);
    color: #ddd;
}


.ai-suggestion-item {
    transition: all 0.2s ease;
    cursor: pointer;
}

.prose-invert a {
    color: #3b82f6;
    text-decoration: underline;
}

.prose-invert a:hover {
    color: #60a5fa;
}

.collab-caret {
    position: absolute;
    border-left: 2px solid #3b82f6;
    height: 1.2em;
    animation: caret-pulse 1.2s infinite;
}

@keyframes caret-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.attachment-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    margin: 0.25rem 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.5rem;
    gap: 0.5rem;
}

.attachment-name {
    flex: 1;
    font-size: 0.875rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-size {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 0 0.5rem;
}

.remove-attachment {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.remove-attachment:hover {
    opacity: 1;
}

.remove-attachment svg {
    display: block;
}

.notification {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--background-elevated);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    font-size: 0.875rem;
    z-index: 1000;
    animation: slideIn 0.3s ease-out;
}

.notification-info {
    background: var(--info-background, #3b82f6);
    color: white;
}

.notification-error {
    background: var(--error-background, #ef4444);
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

body {
    --accent-brand: var(--constant-clay);
    --accent-main-000: 18 50.4% 47.5%;
    --accent-main-100: 18 56.8% 43.5%;
    --accent-main-200: 19 58.3% 40.4%;
    --accent-main-900: 16 41.3% 18%;
    --accent-pro-000: 251 84.6% 74.5%;
    --accent-pro-100: 251 40.2% 54.1%;
    --accent-pro-200: 251 40% 45.1%;
    --accent-pro-900: 250 25.3% 19.4%;
    --accent-secondary-000: 210 74.8% 57%;
    --accent-secondary-100: 210 74.8% 49.8%;
    --accent-secondary-200: 210 74.2% 42.1%;
    --accent-secondary-900: 210 19.5% 18%;
    --bg-000: var(--constant-slate-700);
    --bg-100: var(--constant-slate-750);
    --bg-200: var(--constant-slate-800);
    --bg-300: var(--constant-slate-850);
    --bg-400: var(--constant-slate-900);
    --bg-500: var(--constant-slate-950);
    --border-100: var(--constant-slate-600);
    --border-200: var(--constant-slate-600);
    --border-300: var(--constant-slate-600);
    --border-400: var(--constant-slate-600);
    --danger-000: 5 69.4% 72.9%;
    --danger-100: 5 79.4% 70.8%;
    --danger-200: 5 53.6% 44.8%;
    --danger-900: 0 21.4% 17.6%;
    --oncolor-100: var(--constant-slate-000);
    --oncolor-200: 60 6.7% 97.1%;
    --oncolor-300: 60 6.7% 97.1%;
    --text-000: 60 6.7% 97.1%;
    --text-100: 50 23.1% 94.9%;
    --text-200: 60 5.5% 89.2%;
    --text-300: 47 8.4% 79%;
    --text-400: 48 9.6% 69.2%;
    --text-500: 45 6.3% 62.9%;
}

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

.bg-bg-300 {
    --tw-bg-opacity: 1;
    background-color: hsl(30deg 3.3% 11.8%);
}

.p-1 {
    padding: .25rem;
}
.to-bg-200\/5 {
    --tw-gradient-to: hsl(var(--bg-200) / 0.05) var(--tw-gradient-to-position);
}

.from-bg-200 {
    --tw-gradient-from: hsl(var(--bg-200) / 1) var(--tw-gradient-from-position);
    --tw-gradient-to: hsl(var(--bg-200) / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-bg-300 {
    --tw-bg-opacity: 1;
    background-color: hsl(var(--bg-300) / var(--tw-bg-opacity));
}

.text-text-300 {
    --tw-text-opacity: 1;
    color: hsl(var(--text-300) / var(--tw-text-opacity));
}

.ring-offset-bg-300 {
    --tw-ring-offset-color: hsl(var(--bg-300) / 1);
}

.ring-offset-2 {
    --tw-ring-offset-width: 2px;
}

.ring-accent-main-100 {
    --tw-ring-opacity: 1;
    --tw-ring-color: hsl(var(--accent-main-100) / var(--tw-ring-opacity));
}

.\!text-left {
    text-align: left !important;
}
.\!py-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
}
.\!px-2\.5 {
    padding-left: .625rem !important;
    padding-right: .625rem !important;
}
.border-border-300 {
    border-color: hsl(48deg 2.7% 35.9% / 25%) !important;
}

.border-none-1 {
    border-color: transparent;
}

html:has(#email-list-sidebar[data-forced-closed="true"]) #audio-player-panel {
    right: 0;
    left: calc(100% - 23.7rem);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

html:has(#email-list-sidebar[data-forced-closed="true"]) #search-bar-content {
    max-width: 44px;
    #search-bar-content-kbd{
        display: none;
    }
    #search-bar-content-text{
        display: none;
    }

    svg{
        left: 0.75rem;
        top: 0.625rem;
    }
}


#search-bar-content-kbd{
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

#search-bar{
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

html:has(#email-list-sidebar[data-forced-closed="true"]) #search-bar {
    margin-right: 8px !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    justify-content: flex-end;
   
}

#search-bar-content{
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

html:has(#contact-modal:not(.hidden)) #search-bar {
    margin-right: 8px !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    justify-content: flex-end;
   
}

html:has(#contact-modal:not(.hidden)) #search-bar-content {
    max-width: 44px;
    #search-bar-content-kbd{
        display: none;
    }
    #search-bar-content-text{
        display: none;
    }

    svg{
        left: 0.75rem;
        top: 0.625rem;
    }
}
