@import url('https://fonts.googleapis.com/css?family=Inter:wght@500&display=swap');
/* Header style */
.header {
    position: fixed;
    padding: 0px 20px;
    width: 100%;
    height: 50px;
    left: 0;
    top: 0;
    display: flex;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08);
    z-index: 3;
}

.logo img {
    height: 32px;
}

.body-wrap {
    background: #f9fafb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.flex {
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.shareLink {
    color: black;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    margin-left: 12px;
}
.userSphere{
    margin: 10px;
    font-size: 20px;
    font-weight: 500;
}

.shareLinkText {
    color: var(--gray-900, #18181b);
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
}

.flexBox {
    margin-top: 20px;
}

.form-input {
    font-size: 14px;
    padding: 6px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
}

.swal2-actions {
    /* margin:0 !important; */
    font-family: Inter !important;
    /* width: 100% !imporsx-end ; */
    display: flex;
    width: 100% !important;
    margin-top: 6px !important;
}

.swal2-confirm {
    background: none;
    background-color: #1a56db !important;
    color: #fff !important;
    border-radius: 8px;
    border: 0.5px solid var(--gray-900, #18181b);
}

.modal-text {
    color: var(--black, var(--black, #000));
    font-family: Inter;
    font-size: 14px;
    line-height: 150%;
    margin-top: 16px;
}

.t-button {
    background: transparent !important;
    color: black !important;
    border: 1px solid #18181b !important;
}

.share-actions {
    display: flex;
    width: 100% !important;
    justify-content: flex-end !important;
    margin-top: 6px !important;
}

.share-actions-buttons {
    font-size: 12px !important;
    font-weight: 500 !important;
}

.share-cancel {
    font-size: 13px !important;
    margin-right: 30px !important;
}
.maxWD {
    width: 100%;
    max-width: 100%;
}

.prototypeLink {
    text-decoration: none;
    color: #1c64f2;
    cursor: pointer;
    margin-bottom: 10px;
}

.text {
    margin-bottom: 6px;
}

.blue-border {
    border: 1px solid #1c64f2;
}

.divider,
#divider1,
#divider2,
#divider3 {
    margin: 6px;
    border-bottom: 4px solid #000;
}

.ok-btn {
    background-color: #1a56db !important;
}

.popup-text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
}

.cancel {
    background-color: #f05252 !important;
}

.join-meeting-actions-buttons {
    font-size: 18px !important;
}

/* to change the icon color */
.fas,
.fab,
.far,
.fa-solid,
.tab button {
    color: #000 !important;
}


.hidecompletely{
    display: none;
}

#recordingStatus,#transcriptionCleanBtn{
    color: #000;
}

.colorBlack,.dropdown-toggle{
    color: #000;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none;
}

#loader-wrapper p {
    margin-top: 8px;
}

#loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Content styles (adjust as needed) */
#content {
    padding: 20px;
}