.share-modal .modal-dialog .modal-header{ 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}
.share-modal .modal-dialog .modal-header .modal-title{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.share-modal .modal-dialog .modal-header::before,
.share-modal .modal-dialog .modal-header::after{
    display: none;
}		
.share-preview {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.share-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
}

.share-details h6 {
    margin: 0 0 8px 0;
    color: #333;
    font-weight: 600;
}

.share-details p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.share-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.share-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.share-platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: white;
    font-size: 18px;
}

.platform-icon.facebook { background: #1877f2; }
.platform-icon.instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.platform-icon.linkedin { background: #0077b5; }
.platform-icon.twitter { background: #1da1f2; }
.platform-icon.pinterest { background: #bd081c; }
.platform-icon.whatsapp { background: #25d366; }

.share-platform span {
    font-size: 12px;
    font-weight: 500;
    color: #333;
}

.share-link-section {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}
.share-link-section .form-group{
    margin-bottom: 0;
}
.share-link-section .input-group{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
}
.input-group-append .btn-outline-secondary{
    height: 37px;
    background-color: #0077b5;
    color: #fff;
    border-radius: 0;
    border: 1px solid #0077b5;
    padding: 0 10px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.share-link-section label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.input-group-append .btn {
    border-left: 0;
}
.share-details .share-title{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.share-details .share-description{
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .share-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-preview {
        flex-direction: column;
        text-align: center;
    }
    
    .share-image {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .share-details .share-title{
        font-size: 16px;
    }
    .share-details .share-description{
        font-size: 12px;
    }
}