/*

	Title: Popup
	Author: QBIT
	Date: 20/11/2024

	File path: ../../../../uploads/

*/

/* Popup styles */
.modal {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	max-width: 500px;
	width: 90%;
}

.close-btn {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    float: right;
}

/* Media queries */
@media (max-width: 64em) 
{
	/* Add specific styles if needed */
}