
.mtop-custom{
    margin-top: 190px;
}

.app-heading{
    background-color: #eeeeee;
    padding: 5px 10px;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

.app-heading h3{
    font-size: 1.15rem;
    color: #f78604;
}

/* Image Container */
.image-container {
    position: relative;
    display: inline-block;
}

/* Icons */
.download-icon, .maximize-icon {
    position: absolute;
    top: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white !important;
    border: none;
    padding: 1px 5px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}

.download-icon { right: 35px; }
.maximize-icon { right: 5px; }

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1010;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
}

/* .modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    margin-top: 35px;
    border: 2px solid #848484;
    border-radius: 10px;
} */
.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #848484;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    object-fit: contain;
    background-color: rgb(61, 59, 59); 
    margin-top: 30px;
}


.close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Positioning Rotation Buttons */
.rotate-btn {
    position: absolute;
    top: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transform: translateY(-50%);
    z-index: 1010;
}

.rotate-btn.left { left: 10px; }  /* Left rotation button */
.rotate-btn.right { right: 10px; } /* Right rotation button */

/* Ensure Image Rotation is Smooth */
.modal-content {
    transition: transform 0.3s ease-in-out;
}

.token-class{
    background-color: #efd846;
    color: #212121;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.825rem;
}




.custom-form-section {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 1.5rem;
    background-color: #fefefe;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.custom-form-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #423e37;
    padding-bottom: 0.5rem;
    color: #c1780b;
}

.custom-field {
    margin-bottom: 1.25rem;
}

.custom-label {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 0.25rem;
}

.custom-label small {
    font-weight: 600;
    color: #53575b;
    margin-bottom: 0.25rem;
}

.custom-value {
    background-color: #f8f9fa;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 15px;
}