html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* CommunityHub Custom Styles */

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

    .card:hover {
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.badge {
    font-size: 0.85rem;
    padding: 0.35em 0.65em;
}

.alert {
    border-radius: 0.5rem;
}

.btn {
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }

.list-group-item {
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

    .list-group-item:hover {
        border-left-color: #0d6efd;
        background-color: #f8f9fa;
    }

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

/* Dashboard cards */
.dashboard-stat-card {
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* Message styling */
.message-content {
    line-height: 1.8;
}

/* Footer */
footer {
    margin-top: 3rem;
    padding: 2rem 0;
    background-color: #f8f9fa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .card-body {
        padding: 1rem;
    }
}