/**
 * Aeon SEO Frontend Styles
 *
 * @package Aeon_SEO
 */

/* Frontend LLMS Links */
.aeon-seo-llms-link {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.aeon-seo-llms-button {
    display: inline-block;
    padding: 8px 16px;
    background: #f8f9fa;
    color: #6c757d !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
}

.aeon-seo-llms-button:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057 !important;
    text-decoration: none;
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.aeon-seo-llms-button:active {
    transform: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.aeon-seo-llms-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.2);
}

/* Alternative styling for different themes */
.aeon-seo-llms-link.centered {
    text-align: center;
}

.aeon-seo-llms-link.left-aligned {
    text-align: left;
}

.aeon-seo-llms-link.right-aligned {
    text-align: right;
}

/* Responsive design */
@media (max-width: 768px) {
    .aeon-seo-llms-link {
        margin: 15px 0;
        padding: 10px;
    }
    
    .aeon-seo-llms-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .aeon-seo-llms-button {
        padding: 15px 20px;
        font-size: 18px;
    }
}
