/* Estilos para los botones */
.custom-button {
	font-weight: bold;
	border: none;
	border-radius: 5px;
	padding: 10px 15px;
	font-size: 16px;
	cursor: pointer;
	width: 215px !important; 
	height: 50px !important; 
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* Style for disabled buttons */
.custom-button.disabled-button {
    background: #cccccc !important; /* Gray background for disabled */
    color: #666666 !important; /* Lighter text color for disabled */
    cursor: not-allowed !important; /* Prohibit cursor */
    pointer-events: none; /* Prevent pointer interaction */
    opacity: 0.6; /* Slight transparency for visual effect */
}