
.modal {
    background-color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000; 
    display: none; 
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    color: #777;
}

.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px 20px;
}

body.modal-open {
    overflow: hidden; 
}

body.modal-open .container {
    pointer-events: none; 
}


.modal {
    pointer-events: auto; 
}




.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-inner {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: #e74c3c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-inner i {
    color: white;
    font-size: 24px;
}

.modal-title {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

.url-container {
    margin: 0 20px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
}

.url-left {
    display: flex;
    align-items: center;
}

.url-icon {
    width: 32px;
    height: 32px;
    background-color: #000;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.url-icon i {
    color: white;
    font-size: 16px;
}

.url-text {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #777;
    font-size: 18px;
}

.share-options {
    padding: 0 20px 20px;
}

.share-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
}

.share-option:hover {
    background-color: #f8f8f8;
}

.option-left {
    display: flex;
    align-items: center;
}

.option-icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.facebook-icon {
    color: #1877F2;
}

.linkedin-icon {
    color: #0A66C2;
}

.twitter-icon {
    color: #000;
}

.whatsapp-icon {
    color: #25D366;
}

.messenger-icon {
    color: #0084FF;
}

.option-text {
    font-size: 14px;
    font-weight: 500;
}

.option-arrow {
    color: #ccc;
    font-size: 16px;
}

.modal::-webkit-scrollbar {
    width: 8px;
}

.modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
    background: #555;
}