/**
 * Diamond Search Pro - Share & Infographic Styles
 */
 
/* Flash animation for compare bar */
@keyframes dsp-flash-animation {
    0%   { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7); }
    70%  { box-shadow: 0 0 0 15px rgba(52, 152, 219, 0); }
    100% { box-shadow: 0 0 0 0 rgba(52, 152, 219, 0); }
}

.dsp-compare-bar.dsp-flash {
    animation: dsp-flash-animation 1s ease-out;
    animation-iteration-count: 3;
}

/* Share Modal */
.dsp-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dsp-share-modal-content {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 450px;
    max-width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

/* Modal Header */
.dsp-share-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dsp-share-header h2 {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.dsp-share-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.dsp-share-close:hover {
    color: #333;
}

/* Link Section */
.dsp-share-link-section {
    margin-bottom: 25px;
}

.dsp-share-link-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.dsp-share-link {
    width: calc(100% - 120px);
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

.dsp-copy-link {
    margin-left: 10px;
    padding: 10px 15px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.dsp-copy-link:hover {
    background-color: #eee;
}

/* Social Section */
.dsp-social-section {
    margin-bottom: 25px;
}

.dsp-social-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.dsp-social-buttons {
    display: flex;
    gap: 10px;
}

.dsp-social-buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
}

.dsp-social-buttons button i {
    margin-right: 8px;
    font-size: 16px;
}

.dsp-social-facebook {
    background-color: #3b5998;
}

.dsp-social-twitter {
    background-color: #1da1f2;
}

.dsp-social-email {
    background-color: #ea4335;
}

.dsp-social-facebook:hover {
    background-color: #2d4373;
}

.dsp-social-twitter:hover {
    background-color: #0c85d0;
}

.dsp-social-email:hover {
    background-color: #d62516;
}

/* Infographic Section */
.dsp-infographic-section {
    margin-bottom: 15px;
}

.dsp-infographic-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.dsp-infographic-container {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    text-align: center;
}

.dsp-infographic-image {
    max-width: 100%;
    max-height: 400px;
}

.dsp-info-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.dsp-download-infographic {
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.dsp-download-infographic:hover {
    background-color: #45a049;
    text-decoration: none;
    color: white;
}

/* Spinner */
.dsp-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #3498db;
    animation: dsp-spin 1s ease-in-out infinite;
    margin-bottom: 10px;
}

@keyframes dsp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message */
.dsp-error {
    color: #e74c3c;
    font-size: 14px;
}

/* Compare Bar Share Button */
.dsp-compare-share {
    margin-right: 10px;
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.dsp-compare-share:hover {
    background-color: #2980b9;
}

/* Icons */
.dsp-icon-facebook:before {
    content: "f";
    font-weight: bold;
}

.dsp-icon-twitter:before {
    content: "t";
    font-weight: bold;
}

.dsp-icon-email:before {
    content: "@";
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dsp-share-modal-content {
        padding: 20px;
        width: 95%;
    }
    
    .dsp-share-link {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .dsp-copy-link {
        margin-left: 0;
        width: 100%;
    }
    
    .dsp-social-buttons {
        flex-direction: column;
    }
    
    .dsp-social-buttons button {
        width: 100%;
    }
}