        body, html {
            margin: 0;
            padding: 0;
            font-family: "Inter";
        }
        .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .column {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .footer {
            width: 100%;
            padding: 40px 0;
        }
        .footer .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }
        .footer .column {
            max-width: 100%;
        }
        .footer .frame-2 {
            max-width: 80%;
        }
        .footer .text-wrapper-2 {
            margin-bottom: 15px;
            font-weight: bold;
        }
        .footer .text-wrapper-3 {
            margin-bottom: 10px;
        }
        .footer .links {
            margin-bottom: 30px;
        }
        .centered-copyright {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 20px;
        }
        /* Feedback specific styles */
        .feedback-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .feedback-btn i {
            font-size: 1.2rem;
        }
        #feedbackModal {
            z-index: 1050;
        }
        .feedback-toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1060;
            padding: 1rem;
            background-color: #198754;
            color: white;
            border-radius: 0.25rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }

    /* Modal z-index fix: backdrop must be BELOW dialog */
    .modal {
        z-index: 1055 !important;
    }
    .modal-backdrop {
        z-index: 1050 !important;
    }
    .modal-dialog {
        z-index: 1056 !important;
        pointer-events: auto !important;
    }
    .modal-content {
        position: relative;
        z-index: 1057 !important;
        pointer-events: auto !important;
    }
    .modal-content .form-control,
    .modal-content .form-select,
    .modal-content button,
    .modal-content .btn {
        pointer-events: auto !important;
    }


    /*.floating-feedback-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1030;
        border-radius: 50px;
        padding: 10px 20px;
        background-color: #0d6efd;
        color: white;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    .floating-feedback-btn:hover {
        background-color: #0b5ed7;
    }*/
	
	.chiaroscuro {
		padding-bottom: 1px;
	}