.form-group label {
    font-weight: bold;
    font-size: 18px; 
}



.absolute-center {
	position: absolute;
	text-align: left;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;

	border-radius: 1em;
	padding: 5em;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #f9f9f9;
    border: 2px solid #333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

button {
    background-color: #0074d9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background-color: red;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 24px; /* Adjust size for the cross */
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* Ensures the text is centered */
}

.close-button:hover {
    background-color: darkred;
}

.action-section {
    margin-top: 20px; 
    display: flex; 
	justify-content: center;
    align-items: center; 
    gap: 10px; 
}

.tutorial-icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Add a hover effect */
}

.tutorial-icon:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}

