/* Model/Character */
/* Show model Modal */
.modal-image-wrap {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    max-height: 80vh; /* Adjust as needed */
}

.modal-image-container {
    width: 33%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}

.modal-image-details {
    width: 66%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 20px;
}

/* Model Generation */
.model-image-pending,
.model-image-processing,
.model-image-active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 500px; /* Adjust as needed */
}

.model-image-pending,
.model-image-processing {
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Video */
.video-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    position: relative;
}

.video-pending::before {
    /* 1. Add the icon unicode and style */
    content: "\f254"; /* Unicode for fa-spinner */
    font-family: "Font Awesome 6 Free"; /* Match your version (v5/v6) */
    font-weight: 900; /* Necessary for Solid icons */
    font-size: 32px; /* Adjust size as needed */
    /* 2. Layout requirements */
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-right: 8px;
}

.video-pending::after {
    content: "Pending..."; /* Unicode for fa-spinner */
    font-weight: 500; /* Necessary for Solid icons */
    font-size: 20px; /* Adjust size as needed */
    padding-bottom: 10px; /* Adjust spacing as needed */

    display: inline-block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-processing::before {
    /* 1. Add the icon unicode and style */
    content: "\f110"; /* Unicode for fa-spinner */
    font-family: "Font Awesome 6 Free"; /* Match your version (v5/v6) */
    font-weight: 900; /* Necessary for Solid icons */
    font-size: 32px; /* Adjust size as needed */
    /* 2. Layout requirements */
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    margin-right: 8px;

    /* 3. Replicate fa-spin functionality */
    animation: fa-spin 2s infinite linear;
}

/* 4. Define the keyframes if not already loaded by Font Awesome */
@keyframes fa-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.video-processing::after {
    content: "Processing..."; /* Unicode for fa-spinner */
    font-weight: 500; /* Necessary for Solid icons */
    font-size: 20px; /* Adjust size as needed */
    padding-bottom: 10px; /* Adjust spacing as needed */

    display: inline-block;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Show Video Modal */
.modal-video-wrap {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: row;
    max-height: 80vh; /* Adjust as needed */
}

.modal-video-container {
    width: 33%;
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
}

.modal-video-details {
    width: 66%;
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    padding: 20px;
}

