.webo-form {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
}

.domain-group {
    position: relative;
    display: flex;
    align-items: center;
}

.domain-suffix {
    position: absolute;
    right: 10px;
    color: #666;
    pointer-events: none;
}

.form-group {
    margin-bottom: 10px !important;
}

select#membership {
    background-color: #DDFFF0;
    border: none;
}

.create-site-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.create-site-btn.loading i {
    animation: spin 1s linear infinite;
}

.alert-success {
    color: #4fba69;
}

.alert-danger {
    color: #f44336;
}

/* Popup styling */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000d4;
    justify-content: center;
    align-items: center;
    place-items: anchor-center;
    align-content: center;
    z-index: 999;
    display: none;
}

.popup-content {
    background-color: rgb(16 12 12 / 0%);
    box-shadow: 0px 0px 10px 0px #00a15d9e;
    padding: 20px;
    border-radius: 5px;
    max-width: 1200px;
    width: 100%;
}

.popup button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.popup button:hover {
    background-color: #0056b3;
}
.container-webo {
    padding: 40px 20px;
}
h3 {
    color:rgb(255, 255, 255);
    letter-spacing: 1.5px;
    font-weight: bold;
}
h1 {
    margin-bottom: 20px;
    color: #333;
}
.cards-webo {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    width: 280px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
}
.card:hover::before {
    left: 100%;
}
.card:hover {
    transform: scale(1.07);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.3);
}
.divi { background: linear-gradient(to bottom, #201331, #b142eccf); color: white; }
.elementor-webo {     background: linear-gradient(to bottom, #FFEEFC, #FF87EB); color: #333 }
.flatsome {     background: linear-gradient(to bottom, #FFEEFC, #446084); color: #000; }
.card img {
    width: 100px;
    margin: 15px 0;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.2));
}

ul {
    list-style-type: none;
    padding: 0;
}

.container-webo ul li {
    margin: 10px 0;
    font-size: 14px;
}

.button-webo {
    background: linear-gradient(to right, #6200ea, #a100f2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.button-webo::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-in-out;
}

.button-webo:hover::after {
    left: 100%;
}

.button-webo:hover {
    background: linear-gradient(to right, #3700b3, #7200ca);
    transform: scale(1.05);
}

.form-group input, .form-group select {
    width: 100% !important;
    padding: 10px !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
}

@media (max-width: 768px) {
    .container-webo ul, .container-webo h4, .container-webo h2 {
        display: none;
    }
    .card img {
        width: 150px;
    }
    .button-webo {
        margin-top: 20px;
        width: 80%;
    }
}
