        /* Basic styles */
        html,
        body {
            margin: 0;
            padding: 0;
            height: 100%;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: black;
            background-color: white;
            height: 100%;
        }



        /* Ensure modal is centered vertically and horizontally */
        .modal-dialog-centered {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-body {
            padding: 1rem;
        }

        .error-message {
            color: red;
        }

        .nav-tabs .nav-link {
            color: black;
        }
        