/* Looper Module Admin Styles */

.looper-notification {
    animation: slideInRight 0.3s ease-out;
}

.looper-notification.looper-notification-success {
    background-color: #4CAF50 !important;
}

.looper-notification.looper-notification-error {
    background-color: #f44336 !important;
}

@keyframes slideInRight {
    from {
        transform: translateX(300px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Additional spacing for toggle groups */
.et_pb_toggle_content .et-pb-main-setting {
    margin-bottom: 15px;
}

.et_pb_toggle_title {
    background: #f7f7f7;
    padding: 8px 12px;
    margin: 10px 0 5px;
    border-left: 3px solid #2ea3f2;
}

/* Frontend module styles */
.looper-wrapper {
    display: block;
    width: 100%;
}

.looper-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.looper-item img {
    max-width: 100%;
    height: auto;
}
