/* Gigya WordPress Integration Styles */

/* Messages */
.gigya-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gigya-success {
    background-color: #28a745;
    border: 1px solid #1e7e34;
}

.gigya-error {
    background-color: #dc3545;
    border: 1px solid #bd2130;
}

/* Buttons */
.gigya-login-btn,
.gigya-newsletter-btn,
.gigya-logout-btn {
    background-color: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    margin: 5px;
    transition: background-color 0.3s ease;
}

.gigya-login-btn:hover,
.gigya-newsletter-btn:hover,
.gigya-logout-btn:hover {
    background-color: #005a87;
    color: white;
    text-decoration: none;
}

.gigya-newsletter-btn {
    background-color: #28a745;
}

.gigya-newsletter-btn:hover {
    background-color: #1e7e34;
}

.gigya-logout-btn {
    background-color: #6c757d;
    padding: 8px 15px;
    font-size: 12px;
}

.gigya-logout-btn:hover {
    background-color: #545b62;
}

/* Embedded Forms */
.gigya-embedded-form {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.gigya-embedded-form .gigya-success {
    position: static;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
    font-weight: normal;
}

/* User Info Display */
.gigya-user-info {
    margin: 15px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.gigya-logged-in-user {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.gigya-logged-in-user p {
    margin: 0;
    color: #495057;
}

/* WordPress Theme Integration */
.wp-block-group .gigya-login-btn,
.wp-block-group .gigya-newsletter-btn {
    margin-right: 10px;
}

/* Widget Styles */
.widget .gigya-login-btn,
.widget .gigya-newsletter-btn {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.widget .gigya-embedded-form {
    margin: 10px 0;
    padding: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gigya-message {
        right: 10px;
        left: 10px;
        top: 10px;
        max-width: none;
    }
    
    .gigya-login-btn,
    .gigya-newsletter-btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .gigya-logged-in-user {
        flex-direction: column;
        text-align: center;
    }
    
    .gigya-logged-in-user p {
        margin-bottom: 10px;
    }
}

/* Integration with popular WordPress themes */
.entry-content .gigya-embedded-form,
.post-content .gigya-embedded-form,
.page-content .gigya-embedded-form {
    clear: both;
}

/* Sidebar widget styling */
.sidebar .gigya-embedded-form,
.widget-area .gigya-embedded-form {
    background-color: white;
    border: 1px solid #ddd;
}

/* Footer widget styling */
.site-footer .gigya-newsletter-btn {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #333333;
}

.site-footer .gigya-newsletter-btn:hover {
    background-color: #333333;
    color: #ffffff;
}