﻿
.public-app-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    padding: 3rem 2rem;
    margin: auto;
    max-width: 1280px;
}

.public-app-card-body {
    padding: 0;
}

/* === Step Wizard === */
.public-app-stepwizard {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #e6edef;
    padding-bottom: 1rem;
}

    .public-app-stepwizard .nav-item {
        flex: 1;
        position: relative;
        text-align: center;
    }

    .public-app-stepwizard .nav-link {
        width: 56px;
        height: 56px;
        font-weight: bold;
        font-size: 1.2rem;
        border-radius: 50%;
        background-color: #eef1f8;
        color: #0d6efd;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

        .public-app-stepwizard .nav-link.active {
            background-color: #0d6efd;
            color: #fff;
            border-color: #0d6efd;
            box-shadow: 0 0 0 5px rgba(13, 110, 253, 0.25);
        }

.step-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444;
    margin-top: 0.5rem;
}

label {
    font-weight: 600;
    color: #212529;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: block;
}

.form-control,
select {
    border-radius: 12px;
    border: 1px solid #f0f2f4;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    height: 40px;
    width: 100%;
    background-color: #f9fbfc;
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .form-control:focus,
    select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
        background-color: #fff;
    }

.text-danger {
    font-size: 0.85rem;
    color: #dc3545;
}

/* === Switch === */
.switch {
    position: relative;
    width: 46px;
    height: 24px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.switch-state {
    background-color: #ccc;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}

    .switch-state:before {
        content: "";
        position: absolute;
        width: 18px;
        height: 18px;
        background: white;
        bottom: 3px;
        left: 3px;
        border-radius: 50%;
        transition: 0.4s;
    }

input:checked + .switch-state {
    background-color: #0d6efd;
}

    input:checked + .switch-state:before {
        transform: translateX(22px);
    }

/* === Buttons === */
.btn-primary,
.btn-secondary {
    border-radius: 10px;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
    color: white;
}

/* === Arrows + Icons === */
.icon-arrow-right {
    font-size: 1.5rem;
    color: #0d6efd;
    padding: 0.75rem;
    border-radius: 50%;
    border: 2px solid #0d6efd;
}

/* === Table Styling === */
.table-border-vertical th,
.table-border-vertical td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: center;
    vertical-align: middle;
}

.table-border-vertical th {
    background-color: #f1f3f5;
    font-weight: 600;
}

