/* VettaCloud – custom styles */

/* Ensure full-height layout for the footer to stay at the bottom */
html {
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

main {
    flex: 1;
}

/* Landing hero */
.landing-hero {
    background: linear-gradient(135deg, #0d6efd22 0%, #ffffff 100%);
}

.hero-content {
    max-width: 560px;
}

/* Card tweaks */
.card {
    border: none;
    border-radius: 0.75rem;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    margin-top: auto;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:active,
.footer a:focus {
    color: inherit;
}

/* Profile table */
.w-40 {
    width: 40%;
}

/* Subtle animation on buttons */
.btn {
    transition: transform 0.1s ease-in-out;
}

.btn:active {
    transform: scale(0.97);
}

/* Password input group alignment */
.input-group .btn-outline-secondary {
    border-color: #dee2e6;
}

.users-grid-container {
    height: 19rem;
    overflow-y: auto;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Mention links in text content */
.mention-link {
    color: #0d6efd;
    font-weight: 500;
    text-decoration: none;
}
.mention-link:hover {
    text-decoration: underline;
}

/* Mention autocomplete dropdown */
.mention-dropdown .mention-item {
    cursor: pointer;
}
.mention-dropdown .mention-item:hover,
.mention-dropdown .mention-item.active {
    background-color: #f0f4ff;
}
