﻿
<style >
body {
    font-family: 'Rubik', 'Segoe UI', sans-serif;
    background: linear-gradient(to right top, #f7f9fc, #f0f3f8);
    color: #1f1f1f;
    font-size: 15.8px;
    letter-spacing: 0.2px;
    line-height: 1.65;
    background-attachment: fixed;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}





.nav-tabs .nav-link.active {
    background-color: forestgreen;
    color: white;
    font-weight: bold;
    border: none;
    border-bottom: 3px solid purple;
}

.nav-tabs .nav-link {
    color: forestgreen;
    font-weight: 500;
    border: 1px solid #dee2e6;
    background-color: #e9f5ec;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-right: 2px;
}


.wizard-steps .step {
    position: relative;
    padding: 10px 20px;
    background-color: #d5ead8;
    border-radius: 25px;
    margin: 0 5px 5px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .wizard-steps .step.active {
        background-color: purple;
        color: white;
    }

    .wizard-steps .step::after {
        content: '→';
        position: absolute;
        right: -14px;
        top: 50%;
        z-index: 1000;
        transform: translateY(-50%);
        color: forestgreen;
        font-size: 18px;
    }

    .wizard-steps .step:last-child::after {
        content: '';
    }

/* .wizard-step {
  display: none;
} */

.wizard-step[data-step="1"] {
    display: block;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="file"],
select {
    border-radius: 6px;
}

button[type="submit"],
.btn-success {
    background-color: forestgreen;
    border-color: forestgreen;
}

    button[type="submit"]:hover,
    .btn-success:hover {
        background-color: #228b22;
        border-color: #228b22;
    }

.btn-primary {
    background-color: purple;
    border-color: purple;
}

    .btn-primary:hover {
        background-color: #5e2a82;
        border-color: #5e2a82;
    }

.btn-outline-secondary {
    border-color: purple;
    color: purple;
}

    .btn-outline-secondary:hover {
        background-color: purple;
        color: white;
    }

/* Optional: Animated step transitions */
.fade-in {
    animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 576px) {
    .wizard-controls .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

.wizard-fixed-controls {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.4); /* semi-transparent white */
    backdrop-filter: blur(4px); /* blur effect behind */
    -webkit-backdrop-filter: blur(10px); /* for Safari support */
    padding: 0.7rem;
    border-top: 1px solid #dee2e6;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05); /* Optional: subtle shadow */
}

/* Optional: tweak padding on small screens */
@media (max-width: 480px) {
    .wizard-fixed-controls {
        padding: 0.5rem;
    }
}

.specialbtn {
    border-radius: 50px !important;
}

.fullscreen-scrollable {
    height: calc(100vh - 260px); /* Adjust to match header + fixed control height */
    overflow-y: auto;
    margin-bottom: 80px; /* Reserve space for the fixed footer */
    padding: 1rem;
    padding-bottom: 100px; /* ✅ Make sure this is >= height of .wizard-fixed-controls */
}

/* Optional: Add max-height for better control on desktop */
@media (min-width: 768px) {
    .fullscreen-scrollable {
        max-height: calc(100vh - 260px);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .fullscreen-scrollable {
        height: calc(100vh - 200px); /* Less header/footer space on mobile */
        margin-bottom: 100px; /* Slightly larger on mobile if needed */
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .fullscreen-scrollable {
        height: calc(100vh - 180px);
        padding: 0.5rem;
        margin-bottom: 120px; /* Ensure no overlap on smallest screens */
    }
}



.input-group-text.btn-like {
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
}

    .input-group-text.btn-like:hover {
        background-color: #198754; /* A darker green shade */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    }




</style >
