.efxs-loaders-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
}

.preview-card {
    padding: 40px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-card {
    background-color: #2c3e50;
    color: #ecf0f1;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 25px;
}

.code-block {
    white-space: pre-wrap;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 14px;
    line-height: 1.6;
    overflow-x: auto;
}

/* Loader Styles */
.efxs_loaders_ripple {
    --size: 250px;
    --duration: 2s;
    --primary-color_admin: #2271b1;
    --secondary-color_admin: #135e96;
    --background: linear-gradient(
        0deg,
        rgba(19, 94, 150, 0.1) 0%,
        rgba(34, 113, 177, 0.15) 100%
    );
    height: var(--size);
    aspect-ratio: 1;
    position: relative;
}
 
.efxs_loaders_ripple .efxs_loaders_box {
    position: absolute;
    background: rgba(34, 113, 177, 0.05);
    background: var(--background);
    border-radius: 50%;
    border-top: 1px solid rgba(34, 113, 177, 0.8);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 10px -0px;
    backdrop-filter: blur(5px);
    animation: efxs_loaders_ripple var(--duration) infinite ease-in-out;
}
 
.efxs_loaders_ripple .efxs_loaders_box:nth-child(1) {
    inset: 40%;
    z-index: 99;
}
 
.efxs_loaders_ripple .efxs_loaders_box:nth-child(2) {
    inset: 30%;
    z-index: 98;
    border-color: rgba(34, 113, 177, 0.7);
    animation-delay: 0.2s;
}
 
.efxs_loaders_ripple .efxs_loaders_box:nth-child(3) {
    inset: 20%;
    z-index: 97;
    border-color: rgba(34, 113, 177, 0.5);
    animation-delay: 0.4s;
}
 
.efxs_loaders_ripple .efxs_loaders_box:nth-child(4) {
    inset: 10%;
    z-index: 96;
    border-color: rgba(34, 113, 177, 0.3);
    animation-delay: 0.6s;
}
 
.efxs_loaders_ripple .efxs_loaders_box:nth-child(5) {
    inset: 0%;
    z-index: 95;
    border-color: rgba(34, 113, 177, 0.1);
    animation-delay: 0.8s;
}
 
.efxs_loaders_ripple .efxs_loaders_content {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    z-index: 100;
    animation: efxs_loaders_text_opacity var(--duration) infinite ease-in-out;
}
 
.efxs_loaders_ripple .efxs_loaders_content .efxs_loaders_text {
    font-size: calc(var(--size) / 12);
    font-weight: 700;
    color: var(--primary-color_admin);
    text-align: center;
    letter-spacing: 1px;
    white-space: nowrap;
    animation: efxs_loaders_text_wave var(--duration) infinite ease-in-out;
}

.efxs_loaders_ripple .efxs_loaders_content .efxs_loaders_text .efxs_loaders_highlight {
    color: var(--secondary-color_admin);
    font-weight: 900;
    display: inline-block;
    animation: efxs_loaders_text_wave var(--duration) infinite ease-in-out;
    animation-delay: 0.3s;
}

.efxs_loaders_ripple .efxs_loaders_content .efxs_loaders_text span {
    display: inline-block;
}

.efxs_loaders_ripple .efxs_loaders_content .efxs_loaders_text span:first-child {
    animation: efxs_loaders_text_wave var(--duration) infinite ease-in-out;
    animation-delay: 0s;
}

.efxs_loaders_ripple .efxs_loaders_content .efxs_loaders_text span:last-child {
    animation: efxs_loaders_text_wave var(--duration) infinite ease-in-out;
    animation-delay: 0.6s;
}
 
@keyframes efxs_loaders_ripple {
    0% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 10px -0px;
    }
    50% {
        transform: scale(1.3);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 20px -0px;
    }
    100% {
        transform: scale(1);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 10px -0px;
    }
}
 
@keyframes efxs_loaders_text_opacity {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.7;
    }
}

@keyframes efxs_loaders_text_wave {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-5px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(5px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Color Theme Options */
.theme-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.theme-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-btn.active {
    border: 2px solid #cacaca;
}

.theme-blue {
    background: linear-gradient(135deg, #2271b1, #135e96);
}

.theme-green {
    background: linear-gradient(135deg, #00a32a, #007722);
}

.theme-purple {
    background: linear-gradient(135deg, #825ef7, #5021b8);
}

.theme-orange {
    background: linear-gradient(135deg, #f56e28, #d63638);
}

.theme-pink {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.theme-teal {
    background: linear-gradient(135deg, #009688, #00796b);
}

/* Responsive styles */
@media (max-width: 768px) {
    .efxs_loaders_ripple {
        --size: 200px;
    }
    
    .preview-card {
        padding: 20px;
    }
    
    .code-card {
        padding: 15px;
    }
    
    .code-block {
        font-size: 12px;
    }
}