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

footer {
    position: absolute;
    bottom: 0;
}

/*treeharmony logo*/
#treeharmony-logo-nav {
    width: 100px;
    height: 100%;
}

.navbar-brand {
    width:
}

.nav-btn {
    text-decoration: none;
}

.nav-btn:hover {
    color: inherit;
}
.step-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.step-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-subtitle {
    color: #6b7280;
    margin-bottom: 40px;
}

.step-toolbar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-wrapper input {
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.view-toggle button {
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: #ede9fe;
    color: #5b21b6;
    font-weight: 600;
    cursor: pointer;
}

.content-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.navbar-theme-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0; 

    background-color: var(--card-primary);
    color: var(--card-primary-text);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .navbar-theme-toggle i {
        font-size: 14px;
    }

    .navbar-theme-toggle:hover {
        transform: translateY(-1px);
        box-shadow: var(--shadow-md);
    }

/* dark mode */
body.dark-mode .navbar-theme-toggle {
    background-color: var(--btn-primary);
    color: var(--btn-primary-text);
}
#theme-icon i {
    transition: transform 0.3s ease;
}

.navbar-theme-toggle:active #theme-icon i {
    transform: rotate(180deg);
}