/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

dt.variation-nbsp {
    display: none !important;
}

dd.variation-nbsp {
    margin: 10px 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#custom-loader-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #555;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

/* Share Modal Styles */
.antigro-modal {
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

.antigro-modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    z-index: 10001;
}

.antigro-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.antigro-modal-close:hover,
.antigro-modal-close:focus {
    color: #000;
    text-decoration: none;
}

.antigro-modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.antigro-share-url-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

#antigro-share-url {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #f9f9f9;
}

#antigro-copy-btn {
    padding: 10px 20px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

#antigro-copy-btn:hover {
    background: #005a87;
}
