.setting-group {
    margin-bottom: 2rem;
}

.setting-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.setting-desc {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 1rem;
}

/* Banner styles */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    /* fixed height for banner */
    overflow: hidden;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    background-color: #ddd;
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    /* fill wrapper height */
    object-fit: cover;
    /* crop and cover */
    object-position: center center;
    /* center focus */
    display: block;
}

.banner-change-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    color: white;
    cursor: pointer;
    display: none;
    /* hide by default */
    align-items: center;
    justify-content: center;
}

.banner-wrapper:hover .banner-change-icon {
    display: flex;
    /* show on hover */
}


/* Profile styles */
.profile-pic-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
    cursor: pointer;
}

.profile-pic-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
    display: block;
}

.change-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 8px;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.profile-pic-wrapper:hover .change-icon {
    display: flex;
}

.edit-icon:hover {
    transform: scale(1.1);
}

#bannerImage {
  background-image: url('../assets/img/jobBanner.jpeg');
  background-size: cover;       /* fills container */
  background-position: center;  /* centers the image */
  background-repeat: no-repeat; /* avoids tiling */
  width: 100%;                  /* or a specific width */
  height: 300px;                /* or whatever height you want */
}
