﻿body, html {
    height: 100%;
    margin: 0;
}

.container-fullscreen {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fixed-div {
    position: fixed;
    top: 164px;
    right: 24px;
    width: 31.9%;
    height: 100%;
    overflow-y: auto;
}

.form-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow-x:hidden;
}

.info-button {
    cursor: pointer;
    color: blue;
    margin-left: 5px;
}

.form-group.required .control-label:after {
    content: "*";
    color: red;
}

.form-section {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

    .form-section legend {
        width: auto;
        padding: 0 10px;
        margin-bottom: 0;
        font-size: 16px;
        border: none;
    }

    .form-section .form-group {
        margin-bottom: 15px;
        position: relative; /* Ensure relative positioning for absolute asterisk */
    }

        .form-section .form-group label {
            display: inline-block;
            margin-bottom: 5px;
            font-weight: normal;
        }

        .form-section .form-group .mandatory {
            color: red;
            /*position: absolute;
                    top: 0;
                    right: -10px;*/ /* Adjust as needed for positioning */
        }

        .form-section .form-group .info-button {
            margin-left: 10px;
            padding: 5px;
            border-radius: 50%;
            font-size: 12px;
            line-height: 1;
        }

.hover-pointer {
    cursor: pointer; /* Change cursor to pointer on hover */
}

    .hover-pointer:hover {
        color: blue; /* Example: Change text color on hover */
    }

.blink-move {
    position: relative;
    display: inline-block;
    cursor: pointer;
    animation: blinkMove 2s infinite; /* Adjust animation duration as needed */
}

.continuous-move {
    position: relative;
    display: inline-block;
    animation: continuousMove 8s linear infinite; /* Adjust animation duration and timing function as needed */
}

@keyframes continuousMove {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%); /* Move text 100% to the left */
    }
}

.justify-content {
    text-align: justify;
}

/* Basic styling for the form */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.preview-btn {
    /*margin-top: 10px;*/
}

/* Modal styling */
.modern-modal .modal-dialog {
    max-width: 800px;
}

.modern-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
}

.modern-modal .modal-header {
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
    padding: 1.5rem;
}

.modern-modal .modal-title {
    font-size: 1.25rem;
    font-weight: normal;
}

.modern-modal .modal-body {
    padding: 1.5rem;
    background-color: #fff;
}

.modern-modal .modal-footer {
    border-top: 1px solid #ddd;
    padding: 1rem;
    background-color: #f7f7f7;
}

.preview-item {
    margin-bottom: 0.75rem;
}

    .preview-item strong {
        color: #333;
    }

/* Buttons styling */
.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

    .btn-primary:hover {
        background-color: #0056b3;
    }
