a.register_click {
    display: inline-block; /* Make the link a block element */
    width: 100%; /* Set the width to fill the container */
    height: 100%; /* Set the height to fill the container */
    text-decoration: none; /* Remove underline */
    background-color: transparent; /* Set the background color to transparent */
    /* Add any other styles as needed */
}

/* Maintenance Banner Styles */
#maintenance-banner-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 9998;
}

.maintenance-banner {
    background: #B45309;
    color: #FFFFFF;
    padding: 12px 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid #92400E;
    box-shadow: 0 2px 4px rgba(146, 64, 14, 0.3);
    margin-bottom: 5px;
}

.maintenance-banner:last-child {
    margin-bottom: 0;
}

.maintenance-banner-message {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.maintenance-banner-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
    color: #FFFFFF;
}

/* Link and CTA styles within banner */
.maintenance-banner a {
    color: #7C2D12;
    background-color: #FFFBEB;
    padding: 4px 12px;
    border-radius: 16px;
    text-decoration: none;
    display: inline-block;
    margin: 0 4px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.maintenance-banner a:hover {
    background-color: #FDE68A;
    text-decoration: none;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .maintenance-banner {
        font-size: 12px;
        padding: 10px 15px;
    }
}