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

/*Volunteer Role page START*/

.volunteer-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
    position: relative;
}

    .volunteer-card:hover {
        background-color: #f0f8ff;
    }

    .volunteer-card.active {
        transform: scale(1.03);
        border-color: #007bff;
        background-color: #e6f2ff;
    }

.description {
    display: none;
    margin-top: 10px;
}

.volunteer-card.active .description {
    display: block;
}

.rank-badge {
    position: absolute;
    top: 5px;
    right: 10px;
    background: #007bff;
    color: white;
    padding: 3px 7px;
    border-radius: 1.5rem;
    font-weight: bold;
}

#selected-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.volunteer-card.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/*Volunteer Role page END*/


.accommodation-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background-color: #fff;
    border-radius: 1rem;
    border: 2px solid #dee2e6;
}

    .accommodation-card:hover {
        transform: scale(1.03);
        box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
    }

.accommodation-icon {
    width: 48px;
    height: 48px;
}

.password-wrapper {
    position: relative;
}

    .password-wrapper input {
        padding-right: 2.5rem;
    }

.toggle-password {
    position: absolute;
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.2rem;
    color: #555;
    padding: 0;
    line-height: 1;
}

    .toggle-password:focus {
        outline: none;
    }