/* Custom Plugin Frontend Styles */

.custom-greeting {
    padding: 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-weight: 600;
}

.custom-greeting.default {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
}

.custom-greeting.highlight {
    background-color: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

.custom-plugin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.custom-plugin-button {
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-plugin-button:hover {
    background-color: #005a87;
}

.custom-plugin-loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top-color: #007cba;
    animation: spin 1s ease-in-out infinite;
}

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