﻿body {
    font-family: 'Vazirmatn', sans-serif;
    direction: rtl;
    text-align: right;
    height: 100vh;
    justify-content: space-between;
}

.wizard-container {
    max-width: 600px;
    margin: auto;
}

.wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    list-style: none;
    padding: 0;
}

    .wizard-steps li {
        position: relative;
        flex: 1;
        text-align: center;
        background-color: lightgray;
        color: black;
        border-radius: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-50%);
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        border-right: 10px solid lightgray;
        border-left: 10px solid lightgray;
    }



        .wizard-steps li.active {
            background-color: green;
            color: white;
            font-weight: 900;
        }

.wizard-step {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .wizard-step.active {
        display: block;
        opacity: 1;
    }

.spinner-border {
    display: none;
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

.loading .spinner-border {
    display: inline-block;
}

.eng {
    text-align: center;
    direction: ltr;
}

.url-list {
    list-style: none;
    padding: 0;
}

    .url-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
    }

        .url-list li button {
            background: none;
            border: none;
            color: red;
            cursor: pointer;
        }

.error-message {
    color: red;
    margin-top: 10px;
}


footer {
    background-color: #e8e7e7 !important;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    align-self: center !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
}

    footer > a {
        display: inline-block !important;
    }

h2 {
    background-color: green !important;
    padding: 10px !important;
    font-weight: bold;
    color: white !important;
    border-radius: 50% 0 0 50% !important;
    width: 70%;
}
