﻿.form-inline .form-control {
    width: auto;
}

.btn-inline-primary {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.table-head {
    background: linear-gradient(45deg, #ad021a, #222317);
    background: linear-gradient(45deg, #1b3642, #b92424);
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
}

.table {
    --bs-table-bg:;
}
/* .table th {
        background: linear-gradient(45deg, #ad021a, #222317);
    }*/
.custom-card {
    padding: 0px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.modal-content {
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}



.text-center img {
    margin-top: 0.5rem;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s;
}

.progress-bar-container {
    height: 10px;
    background-color: transparent;
    border-radius: 5px;
}

.progress {
    height: 100%;
}

.progress-bar {
    height: 10px;
}

.container {
    background-color: #21d4fd;
    background-image: linear-gradient(19deg,#646578, #060f22 100%);
    justify-content: center;
    align-items: center;
    padding: 0px;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1.75rem auto;
    }

    .d-flex {
        flex-direction: column;
    }


    .progress-bar-container {
        position: relative;
        top: 0%;
        margin-left: 50px;
        width: 5px;
        height: 300px;
        float: left;
        background-color: #181818;
        border: 3px solid #98AFC7;
        box-sizing: border-box;
    }

    .progress-bar {
        position: absolute;
        bottom: 0;
        width: 5%;
        background-color: #9BC9C7;
        height: 0;
        box-sizing: border-box;
        animation: grow 1.5s ease-out forwards;
        transform-origin: bottom;
    }

    @keyframes grow {
        to {
            height: 100%;
        }
    }
}



/*#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
CSS counters to number the steps
counter-reset: step;
}

    #progressbar li {
        list-style-type: none;
        color: white;
        text-transform: uppercase;
        font-size: 9px;
        width: 33.33%;
        float: left;
        position: relative;
    }

        #progressbar li:before {
            content: counter(step);
            counter-increment: step;
            width: 20px;
            line-height: 20px;
            display: block;
            font-size: 10px;
            color: #333;
            background: white;
            border-radius: 3px;
            margin: 0 auto 5px auto;
        }
progressbar connectors
#progressbar li:after {
            content: '';
            width: 100%;
            height: 2px;
            background: white;
            position: absolute;
            left: -50%;
            top: 9px;
            z-index: -1; put it behind the numbers
}

        #progressbar li:first-child:after {
connector not needed before the first step
content: none;
        }
marking active/completed steps green
The number of the step and the connector before it = green
#progressbar li.active:before, #progressbar li.active:after {
            background: #27AE60;
            color: white;
        }*/
/*/*//*** {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.step-wizard {
    background-color: #21d4fd;
    background-image: linear-gradient(19deg,#21d4fd,#b721ff 100%);
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-wizard-list {
    background: #fff;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    -webkit-box-flex: 1;*/*/
    /*  -ms-flex-positive:1;*/
    /*flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    position: relative;
}

.flex-item {
    -ms-flex: 1 1 auto;*/ /* IE 10 */
    /*flex: 1 1 auto;*/ /* Modern browsers */
/*}

.step-wizard-item + .step-wizard-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    background: #21d4fd;
    width: 100%;
    height: 2px;
    transform: translateX(-50%);
    z-index: -10;
}

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    color: transparent;
}

    .progress-count:after {
        content: "";
        height: 40px;
        width: 40px;
        background: #21d4fd;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        border-radius: 50%;
        z-index: -10;
    }

    

    .progress-count:before {
        content: "";
        height: 10px;
        width: 20px;
        border-left: 3px solid #fff;
        border-bottom: 3px solid #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-60%) rotate(-45deg);
        transform-origin: center center;
    }

.current-item .progress-count:before,
.current-item ~ .step-wizard-item .progress-count:before {
    display: none;
}

.current-item ~ .step-wizard-item .progress-count:after {
    height: 10px;
    width: 10px;
}

.current-item ~ .step-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count:after {
    background: #fff;
    border: 2px solid #21d4fd;
}

.current-item .progress-count {
    color: #21d4fd;
}

.progress-label {
    text-align: center;
}

@media (max-width: 990px) {
    .step-wizard-list {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        width: 100%;
    }

    .step-wizard-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

        .step-wizard-item + .step-wizard-item:after {
            content: none;
        }

    .progress-count {
        margin: 0 20px 0 0;
    }*/

    /*  .step-wizard-item:last-child {
        margin-bottom: 0;
    }*/
/*}*/
.step-wizard {
    background-color: #21d4fd;
    background-image: linear-gradient(19deg, #21d4fd, #b721ff 100%);
    height: 30vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-wizard-list {
    background: #fff;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    color: #333;
    list-style-type: none;
    border-radius: 10px;
    display: flex;
    padding: 20px 10px;
    position: relative;
    z-index: 10;
}

.step-wizard-item {
    padding: 0 20px;
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    position: relative;
}

    .step-wizard-item + .step-wizard-item:after {
        content: "";
        position: absolute;
        left: 0;
        top: 19px;
        background: #21d4fd;
        width: 100%;
        height: 2px;
        transform: translateX(-50%);
        z-index: -10;
    }

.progress-count {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    font-size: 20px;
    color: transparent;
}

    /* Default state: blue */
    .progress-count::after {
        content: "";
        height: 40px;
        width: 40px;
        background: #21d4fd; /* Blue background */
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -39%);
        border-radius: 50%;
        z-index: -10;
    }

    /* Checkmark and crossmark */
    .progress-count::before {
        content: "";
        height: 20px;
        width: 20px;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: #fff; /* White color */
    }

/* Approved status */
.approved .progress-count::after {
    background: #21d4fd; /* Blue background for approved */
}

.approved .progress-count::before {
    content: "\2713"; /* Checkmark Unicode */
    font-size: 20px;
}

/* Rejected status */
.rejected .progress-count::after {
    background: #ff0000; /* Red background for rejected */
}

.rejected .progress-count::before {
    content: "x";
    font-size: 32px;
    transform: translate(-8px, -23px);
}

/* Current item styles */
.current-item .progress-count::before,
.current-item ~ .step-wizard-item .progress-count::before {
    display: none;
}

.current-item ~ .step-wizard-item .progress-count::after {
    height: 10px;
    width: 10px;
}

.current-item ~ .step-wizard-item .progress-label {
    opacity: 0.5;
}

.current-item .progress-count::after {
    background: #fff;
    border: 2px solid #21d4fd;
}

.current-item .progress-count {
    color: #21d4fd;
}

.progress-label {
    text-align: center;
}

@media (max-width: 990px) {
    .step-wizard-list {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        width: 100%;
    }

    .step-wizard-item {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 10px;
    }

        .step-wizard-item + .step-wizard-item:after {
            content: none;
        }

    .progress-count {
        margin: 0 20px 0 0;
    }
}

/*.col1 {
    padding: 6px;
    background: linear-gradient(45deg, #08C, #08C);
    color: white;
    font-size: 20px;
    font-family: -webkit-body;
    border: solid black 1px;
}

    .col1:hover {
        background: linear-gradient(45deg, #08C, #08C);
        border: solid black 1px;
    }

#AppTracker tbody tr {
    transition: transform 0.2s ease-in-out;
}

    #AppTracker tbody tr:hover {
        transform: scale(1.01);
        background: #FCF6F5FF;
    }

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1500px !important;
    }
}*/
