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;
}

/* Home page helpers */
.bg-success-subtle { background-color: #e6f4ea; }
.text-success { color: #198754; }

/* Hero section background */
.hero-background {
    background-image: url('/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 12px;
    padding-left: 2rem;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 1;
}

.hero-background .container {
  position: relative;
  z-index: 2;
}

    .hero-background h1,
    .hero-background p,
    .hero-background .lead,
    .hero-background a,
    .hero-background .small {
        color: white !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

/* Profile Page Styles */
.profile-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.profile-stats {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.profile-stats .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.profile-stats .stat-item:last-child {
    border-bottom: none;
}

.profile-stats .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.profile-stats .stat-value {
    font-weight: 600;
    color: #212529;
}

.work-history-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.work-history-item:last-child {
    border-bottom: none;
}

.job-rating {
    color: #ffc107;
}

.job-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.client-feedback {
    background-color: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    margin: 0.5rem 0;
    font-style: italic;
}

.verified-badge {
    color: #0d6efd;
}

.organization-logo {
    width: 32px;
    height: 32px;
    background-color: #212529;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
}

.profile-picture {
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .profile-sidebar {
        margin-bottom: 2rem;
    }
    
    .action-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .action-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}