/* -----------------------------------------------------
   Webloomer Global Stylesheet
   Clean • Modern • Minimal • Futuristic (Style B)
------------------------------------------------------ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Inter, Arial, sans-serif;
}

/* Background gradient for the whole site */
body {
    background: linear-gradient(145deg, #f0f3ff, #e2e8ff);
    min-height: 100vh;
    color: #333;
    -webkit-font-smoothing: antialiased;
    padding: 30px 0;
}

/* -----------------------------------------------------
   CENTERED CARD CONTAINERS (used in login/register/etc)
------------------------------------------------------ */
.centered-container {
    width: 100%;
    max-width: 420px;
    margin: 40px auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.centered-container h2 {
    font-size: 26px;
    margin-bottom: 18px;
}

.centered-container form {
    margin-top: 14px;
}

/* -----------------------------------------------------
   FORMS
------------------------------------------------------ */
input {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #d7dcef;
    border-radius: 12px;
    background: #fafbff;
    font-size: 15px;
    transition: 0.2s ease;
}

input:focus {
    border-color: #4f6bf0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79,107,240,0.15);
}

/* Buttons */
button {
    width: 100%;
    padding: 14px;
    margin-top: 6px;
    border: none;
    border-radius: 12px;
    background: #4f6bf0;
    color: white;
    font-size: 17px;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background: #3c56d8;
}

/* Small text link */
.small-link {
    margin-top: 16px;
    font-size: 14px;
}

.small-link a {
    color: #4f6bf0;
    text-decoration: none;
}

.small-link a:hover {
    text-decoration: underline;
}

/* -----------------------------------------------------
   NAVIGATION BAR
------------------------------------------------------ */
.navbar {
    background: white;
    padding: 20px 24px;
    box-shadow: 0 2px 14px rgba(0,0,0,0.05);
    font-family: Inter, Arial, sans-serif;
}

.nav-logo {
    font-size: 20px;
    font-weight: 700;
    color: #4f6bf0;
}

.nav-links a {
    margin-left: 18px;
    font-size: 15px;
    text-decoration: none;
    color: #444;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #4f6bf0;
}

/* -----------------------------------------------------
   DASHBOARD MAIN BOX STYLES
------------------------------------------------------ */
.dash-box {
    max-width: 780px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

textarea {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #d7dcef;
    background: #fafbff;
    font-size: 16px;
    resize: vertical;
}

textarea:focus {
    border-color: #4f6bf0;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79,107,240,0.15);
}

/* Result buttons inside dashboard */
.action-buttons button {
    width: auto;
    padding: 12px 18px;
    margin-right: 10px;
    border-radius: 10px;
}

/* -----------------------------------------------------
   PRICING CARDS
------------------------------------------------------ */
.price-card {
    border-radius: 18px;
    padding: 32px;
    background: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    text-align: center;
}

/* Active plan styling */
.active-plan {
    background: #00b894 !important;
}

.price-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 34px;
    font-weight: 700;
    color: #4f6bf0;
}

/* -----------------------------------------------------
   ANIMATIONS
------------------------------------------------------ */

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(10px);}
    to   {opacity: 1; transform: translateY(0);}
}

/* -----------------------------------------------------
   MOBILE SUPPORT
------------------------------------------------------ */
@media (max-width: 768px) {

    .container {
        flex-direction: column;
        gap: 24px;
    }

    .dash-box {
        margin: 20px;
        padding: 24px;
    }

    .centered-container {
        margin: 20px;
        padding: 28px;
    }
}
