﻿
.table-start {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.application_process {
    height: 100%;
}

.table-start:has(.d-none) {
    height: fit-content;
    align-items: end;
    justify-content: start;
}

.page-title {
    background-color: var(--primary-color);
    color: #fff;
}

.modal-header {
    justify-content: center;
}

.modal-title {
    font-size: 22px;
    font-weight: bold;
    position: absolute;
}

.modal-header .btn-close {
    margin: 0;
    margin-inline-start: auto;
}

.modal-footer {
    gap: 10px;
}

.test-card {
    background-color: rgba(var(--primary-color-rgb), 0.1);
    padding-block-start: 20px;
    padding-block-end: 3px;
    padding-inline: 3px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.test-card-title {
    font-size: 18px;
    font-weight: bold;
    padding-inline-start: 16px;
}

.test-card-body {
    background-color: var(--widget-bg);
    padding-block: 25px;
    padding-inline: 50px;
    border-radius: 15px;
    flex: 1;
}

.file-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    outline: 5px dotted #cacaca;
    border-radius: 6px !important;
    transition: 0.2s all;
    font-size: 14px;
    cursor: pointer;
    margin: 10px;
}

.file-icon-container {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(var(--secondary-color-rgb), 0.2);
    fill: var(--secondary-color)
}

.upload-text {
    color: var(--secondary-color);
}

.file-container.active {
    outline-color: var(--secondary-color);
}

#image-display {
    position: relative;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    gap: 1.25em;
    flex-wrap: wrap;
}

    #image-display figure {
        flex: 0 0 200px;
    }

    #image-display img {
        height: 200px;
        width: 100%;
        object-fit: contain;
    }

    #image-display figcaption {
        font-size: 0.8em;
        text-align: center;
        color: #5a5861;
    }

.alert {
    gap: 4px;
    margin-bottom: 1rem;
}

    .alert svg {
        padding-top: 2px;
    }

/*        .input-container label:not(.form-check-label)::after{
            content: " *";
        }*/
textarea {
    height: 40px;
}

.read-only-style {
    background-color: #6c757d;
    pointer-events: none;
    opacity: 0.8;
}

.show-button {
    padding: 6px;
    border: none; /* Removes the border */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    width: 36px;
    height: 36px;
    background-color: transparent; /* Optional: remove background if any */
}

.icon-wrapper {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}

    .icon-wrapper .show-button:hover {
        background-color: #e0f0ed;
        cursor: pointer;
    }
