/* Facebook Connect Button Styles */

.facebook-connect-btn {
    display: inline-block;
    background: #1877f2;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.facebook-connect-btn:hover {
    background: #166fe5;
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
    transform: translateY(-1px);
}

.facebook-connect-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(24, 119, 242, 0.3);
}

.fb-connect-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 18px;
}

.fb-connect-button-wrapper {
    text-align: center;
    margin: 20px 0;
}

.fb-connect-description {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 14px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.fb-connected-status {
    background: #e8f5e8;
    border: 1px solid #4caf50;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.fb-connected-message {
    color: #2e7d32;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.fb-user-pages {
    background: white;
    border-radius: 6px;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #e0e0e0;
}

.fb-user-pages h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 14px;
    text-align: left;
}

.fb-user-pages ul {
    margin: 0;
    padding-left: 20px;
    text-align: left;
}

.fb-user-pages li {
    margin: 5px 0;
    color: #555;
    font-size: 14px;
}

.fb-disconnect-link {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.fb-disconnect-link:hover {
    text-decoration: underline;
}

.fb-connect-success {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4caf50;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 10px 0;
    font-weight: 500;
}

.fb-connect-error {
    background: #ffeaea;
    color: #c62828;
    border: 1px solid #ef5350;
    border-radius: 6px;
    padding: 12px 16px;
    margin: 10px 0;
    font-weight: 500;
}

/* Responsive design */
@media (max-width: 480px) {
    .facebook-connect-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .fb-connect-icon {
        font-size: 16px;
    }

    .fb-connected-status {
        padding: 15px;
    }

    .fb-user-pages {
        padding: 12px;
    }
}
