/* Groups Page Styles */

/* Hero and header styles */
.hero {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.logo-badge {
    max-width: 600px;
    margin: 0 auto;
}

.logo-badge img {
    width: 100%;
    height: auto;
}

/* Page header */
.page-header h1 {
    color: #000 !important;
    margin-bottom: 0.5rem;
}

.lead {
    color: #666 !important;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Search section */
.search-container label {
    color: #000 !important;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.search-input {
    border: 2px solid #ddd;
    color: #000 !important;
}

.search-suggestions {
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-suggestion {
    padding: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    color: #000 !important;
}

.search-suggestion:hover {
    background: #f8f8f8;
}

.search-suggestion:last-child {
    border-bottom: none;
}

/* Confirmation card */
.confirmation-card h3 {
    color: #000 !important;
}

.selected-name {
    color: #000 !important;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Groups display */
.attendee-header h2 {
    color: #000 !important;
    margin-bottom: 0.5rem;
}

.attendee-header .text-muted {
    color: #666 !important;
}

#groups-container h3 {
    color: #000 !important;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.instructions {
    color: #666 !important;
    text-align: center;
    padding: 2rem;
    font-size: 1.1rem;
}

/* Group cards */
.group-card h4 {
    color: #2F4E9D !important;
}

.group-meta {
    color: #333 !important;
}

.members {
    color: #000 !important;
}

.members strong {
    color: #000 !important;
}

.members div {
    color: #666 !important;
}

/* Activity context alert */
.activity-context h3 {
    color: #2F4E9D !important;
}

.activity-context p {
    color: #333 !important;
}

/* Loading and error states */
.loading {
    color: #666 !important;
}

.error {
    color: #d32f2f !important;
}

.error h2 {
    color: #000 !important;
}

/* Success messages */
.success {
    color: #2e7d32 !important;
}

/* Breadcrumb */
nav[aria-label="breadcrumb"] ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

nav[aria-label="breadcrumb"] li {
    color: #666;
}

nav[aria-label="breadcrumb"] li:not(:last-child):after {
    content: "/";
    margin-left: 1rem;
    color: #999;
}

nav[aria-label="breadcrumb"] a {
    color: #2F4E9D;
    text-decoration: none;
}

nav[aria-label="breadcrumb"] a:hover {
    text-decoration: underline;
}