/* Share Dialog Styles */
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.share-dialog-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    width: 408px;
    max-width: 100%;
    padding: 24px;
}

.share-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
    margin-bottom: 16px;
}

.share-dialog-title {
    font-size: 18px;
    font-weight: 600;
}

.share-dialog-close {
    font-size: 24px;
    font-weight: 700;
    background-color: #FFFFFF;
    cursor: pointer;
    padding: 4px;
}

.share-dialog-close:hover {
    color: #374151;
}

.share-text {
    margin-bottom: 16px;
    text-align: center;
}

.social-icons-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon-item {
    width: 64px;
    height: 36px;
}

.social-button {
    margin-bottom: 8px;
    display: inline-block;
    border-radius: 4px;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: normal;
    color: white;
    transition: all 150ms ease-in-out;
    cursor: pointer;
    border: none;
    width: 100%;
}

.social-button:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-button:focus {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    outline: none;
}

.social-button:active {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.social-icon {
    height: 16px;
    width: 16px;
    display: inline-block;
}

/* Fix for Facebook icon size */
.facebook-bg .social-icon svg {
    width: 10px;
    height: 16px;
}

.facebook-bg {
    background-color: #1877f2;
}

.twitter-bg {
    background-color: #000000;
}

.whatsapp-bg {
    background-color: #128c7e;
}

.linkedin-bg {
    background-color: #0077b5;
}

.email-bg {
    background-color: #e1e1e1;
}

.action-buttons-container {
    margin-top: 14px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.action-button {
    background-color: var(--main-color, #19719F);
    padding: 8px 16px;
    text-align: center;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.dialog-footer {
    margin-top: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.close-button {
    background-color: #d1d5db;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.qr-content-wrapper {
    margin-top: 16px;
    display: none;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qr-code-wrapper {
    margin-bottom: 16px;
}

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

.back-button {
    background-color: #d1d5db;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    border: none;
}

.download-button {
    background-color: var(--main-color, #19719F);
    padding: 8px 16px;
    text-align: center;
    border-radius: 8px;
    color: white;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    border: none;
    margin-top: 8px;
}

.action-buttons-container .download-button {
    margin-top: 0;
}
