/*
 * Simple Login Bar - Universal Styles for Logged-In and Logged-Out Users
 */
.slb-login-bar {
    background-color: #f7f7f7;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px; /* Increased gap for better spacing */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.slb-message {
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.slb-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Allows links to wrap on small screens */
    gap: 12px;
}

.slb-link {
    text-decoration: none;
    font-size: 14px;
    color: #f44336; /* Your primary color */
    transition: color 0.2s ease-in-out;
}

.slb-link:hover {
    color: #d32f2f; /* Darker shade for hover effect */
}

.slb-link.slb-login,
.slb-link.slb-logout {
    font-weight: bold;
}

.slb-separator {
    color: #ddd;
}

/* Responsive styles for smaller screens */
@media (max-width: 782px) {
    .slb-login-bar {
        flex-direction: column;
        align-items: flex-start; /* Align content to the left on mobile */
    }
    
    .slb-links {
        width: 100%;
    }
}