/* General Styles */
body {
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
        sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

/* Insurance Theme Colors */
:root {
    --primary-color: #f97316;
    --success-color:#0cf02b;
    /* Orange */
    --secondary-color: #ea384c;
    /* Red */
    --accent-color: #fde1d3;
    /* Light peach */
    --text-dark: #222222;
    --text-light: #8e9196;
    --background-light: #ffffff;
    --background-medium: #f1f0fb;
}

/* Login Page Styles */
.login-container {
    margin-top: 10vh;
}

.login-logo {
    max-width: 120px;
    margin-bottom: 1.5rem;
}

/* Content Container (accounts for the bottom nav) */
.content-container {
    padding-bottom: 70px;
}

.container{
    padding: 30px !important;
}

.main{
    padding-bottom: 100px !important   ;
}
/* Mobile Bottom Navigation */
.mobile-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.mobile-navbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.mobile-navbar a.active {
    color: var(--primary-color);
}

.mobile-navbar i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* Card Styles */
.card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: none;
    margin-bottom: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:active {
    transform: scale(0.98);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.25rem 1.5rem;
}

.card-body {
    padding: 1.5rem;
}

/* Custom Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #e56a14;
    border-color: #e56a14;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Form Control Styles */
.form-control {
    border-radius: 12px;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    border-color: var(--primary-color);
}

/* List group styles */
.list-group-item {
    padding: 1rem 1.25rem;
    border-color: rgba(0, 0, 0, 0.05);
}

/* Award card styles */
.award-card {
    border-radius: 12px;
    overflow: hidden;
    border: none;
    margin-bottom: 1rem;
}

.award-card img {
    border-radius: 8px;
}

/* Badges */
.badge-primary {
    background-color: var(--primary-color);
    color: white;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 6px;
}

.badge-success{
    background-color: var(--success-color);
    color: white;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 6px;
}

/* Profile page */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 540px;
    }
}

/* Insurance specific elements */
.insurance-hero {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.insurance-stats {
    background-color: var(--accent-color);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

.mobile-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  /* position: sticky; */
  top: 0;
  z-index: 1000;
  padding-top: env(safe-area-inset-top);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.filter-tabs {
  overflow: auto;
  scrollbar-width: none;         /* Firefox */
  -ms-overflow-style: none;      /* IE 10+ */
}

.filter-tabs::-webkit-scrollbar {
  display: none;                 /* Chrome, Safari, Opera */
}
