#form2, #form3 {
    display: none;  /* Hide forms initially */
    }
    
    @media (max-width: 768px) {
        .progress_container {
        width: 90%;
        gap: 5px;
        }
    
        /* .form-control {
        font-size: 14px;
        }
         */
         .circle {
            height: 30px;
            width: 30px;
            font-size: 14px;  /* Adjust font size */
        }
    }
    
    .progress_container {
        padding-top: 0;
        width: 100%;
        max-width: 400px;
        display: flex;
        justify-content: space-between;
        align-items: center; /* Align circles with the line */
        gap: 10px;
        margin: 2rem auto;
        position: relative;
        flex-wrap: wrap;
    }
    
    .progress_container::before {
        content: "";
        background-color: #CADCFC; /* Light gray line */
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 4px;
        width: 100%;
        z-index: 1;
    }
    
    .progress {
        background-color: #00246B !important;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        height: 4px !important;
        width: 0%;  /* Start empty */
        z-index: 2;
        transition: 0.4s ease-in-out;
    }
    
    .circle {
        background-color: #CADCFC;
        border: 2px solid #8AB6F9;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 3;
        transition: 0.4s ease;
        font-weight: bold;
        flex-shrink: 0;
    }
    
    .circle.active {
        background-color: #00246B;
        border: 2px solid #00246B;
        color: white;
    }

    

.my-btn {
    background-color: #00246B !important;
    color: white !important;
    border-color: #00246B !important;
}

.my-btn:hover {
    background-color: #001A4D !important; /* Darker Navy Blue */
    color: white !important;
    border-color: #001A4D !important;
}

.back-btn{
    background-color: #CADCFC !important; 
    color: #00246B !important;
    border-color: #CADCFC !important; 
}

.back-btn:hover {
    background-color: #A4C2F4 !important; /* Slightly darker blue */
    color: #00246B !important;
    border-color: #A4C2F4 !important;
}





.uploadedSectCont {
    flex: 1 0 70% !important;
}

.uploadedSectBody {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

.uploadedLeftSection {
    display: flex !important;
    margin-left: 15px !important;
    /* Enable Flexbox */
    align-items: center !important;
    /* Vertically center the items */
    gap: 10px !important;
    /* Add space between the image and the text */
}

.nameTxt {
    margin-left: 50px !important;
    /* Remove default margin */
}

.fileName {
    font-size: 16px !important;
    color: #333 !important;
    font-weight: bold !important;
    white-space: nowrap !important;
    /* Prevents text from wrapping */
    overflow: hidden !important;
    /* Hide overflow if text is too long */
    text-overflow: ellipsis !important;
    /* Adds '...' if text overflows */
}


.uploadedBtn {
    flex: 1 !important;
    display: flex !important;
    justify-content: right !important;
}

.buildFileBtn {
    background-color: #00246B !important;
    color: white !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

.buildFileBtn:hover {
    background-color: #001A4D !important;
}

.add-file-cta {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer !important;
}

#password-display {
    font-size: 18px !important;
    letter-spacing: 4px !important;
    /* Space between dots */
}

.dot {
    display: inline-block !important;
    width: 8px !important;
    height: 8px !important;
    background-color: black !important;
    border-radius: 50% !important;
    /* Makes the dot round */
    margin-right: 3px !important;
    /* Space between dots */
}


.row:after {
    content: "" !important;
    display: table !important;
    clear: both !important;
}

.filename {
    word-break: break-word !important;
    text-wrap: wrap !important;
}

.file-availability{
    font-size: 14px !important;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}