.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 10px;
    z-index: 1050;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-close {
    border: none;
    background: transparent;
    font-size: 1.2rem;
    cursor: pointer;
}

.share-buttons {
    display: flex;
    justify-content: space-around;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.share-buttons .share-item {
    display: none;
}

.share-buttons .share-item.active {
    display: inline-block;
}
.poll-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
}

.poll-popup .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.poll-popup .content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 1060;
}

.hover-effect:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}
.modal-content {
    border-radius: 10px;
}
.btn-light {
    width: 100%;
    margin-bottom: 10px;
}
.modal-footer {
    justify-content: flex-start;
}

.d-flex i:hover {
    cursor: pointer;
  }
.border-bottom-yellow{
    border-bottom: solid yellow;
    border-width: 1px;
  }

.login-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
 
.login-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
 
.login-form-group {
    position: relative;
}
 
#emailInput {
    padding-right: 120px;
}
 
#sendOtpButton {
    position: absolute;
    top: 75%;
    right: 10px;
    transform: translateY(-60%);
    padding: 6px;
    font-size: 8px;
 
    line-height: normal;
}
 
 
 