/*
 * Custom Styles for Sales Revolve 360 - Public Facing Site
 */

/* --- General Body and Layout --- */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

main {
    flex: 1; /* This makes the main content area grow to fill available space */
}

/* --- Navigation Bar --- */
.navbar-brand {
    font-weight: bold;
}

.navbar .btn-primary {
    /* Make the register button stand out a bit more */
    color: #fff; 
}

/* --- Footer --- */
.footer {
    background-color: #343a40; /* A standard dark color */
    color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem 0;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    color: #fff;
}


/* --- Forms (Login/Register/Account) --- */
.card.shadow-sm {
    border: none;
}

/* Style for the access key input group on the account page */
#accessKeyInput {
    background-color: #e9ecef; /* A light grey to show it's read-only */
    border-right: none;
    font-family: "Courier New", Courier, monospace;
    font-weight: bold;
}

#accessKeyInput:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group .btn-outline-secondary {
    border-left: none;
}


/* --- Homepage Hero Section --- */
.hero-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 0.5rem;
}


/* --- Utility Classes --- */
.user-select-all {
    user-select: all; /* Makes text easily selectable, good for access keys */
}