
@import url('bootstrap.min.css');

@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css');


body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bs-primary: #2E7D5C;
  --bs-primary-rgb: 46, 125, 92;
}

.navmenu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.subnav {
    display: flex;
    align-items: center;
    position: relative;
}

.subnav-trigger {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.btn-primary {
  background-color: #2E7D5C;
  border-color: #2E7D5C;
}

.btn-primary:hover {
  background-color: #66BF8A;
  border-color: #66BF8A;
}

.text-green {
  color: #2E7D5C;
}

.filter-green {
    filter: brightness(0) saturate(100%) invert(37%) sepia(44%) saturate(583%) hue-rotate(103deg) brightness(98%) contrast(84%);
}

.bg-gradient-green {
  background: linear-gradient(to bottom, #E4F4EA, #ffffff);
}

.sticky-top-custom {
  position: sticky;
  top: 0;
  z-index: 1020;
}

.hover-shadow {
  transition: box-shadow 0.3s ease;
}

.hover-shadow:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.object-fit-cover {
  object-fit: cover;
}

footer {
        position: sticky;
        box-sizing: border-box;
        bottom: 0;
        width: 100%;
        height: 40px;
        padding: 12px;
        background-color: #eaeaea;

        color: #333333;
        font-size: smaller;
        font-weight: 500;

        border-top: lightgray 1px solid;
    }

    footer a {
        color: #002b00;
    }

    footer a:hover {
        opacity: 0.7;
    }

    #authTabs {
    display: flex;
    background: #f5f5f5;
    padding: 4px;
    border-radius: 10px;
    gap: 4px;
    border: none !important;
}

#authTabs .nav-link {
    border: none !important;
    border-radius: 8px;
    padding: 8px 0;
    color: #444;
    font-weight: 500;
    transition: 0.2s;
}

#authTabs .nav-link.active {
    background: #ffffff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    color: #000 !important;
}

#authTabs .nav-link:not(.active) {
    background: transparent;
}

.card-header {
    border: none !important;
    background: transparent !important;
}

.profile-menu {
    position: relative;
    display: inline-block;
}

.profile-trigger {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 500;
    color: #495057;
}

.profile-trigger:hover {
    color: #0d6efd;
}

.profile-dropdown {
    position: absolute;
    top: 38px;
    right: 0;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    width: 180px;
    display: none;
    z-index: 999;
}

.profile-dropdown.show {
    display: block;
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.profile-dropdown a:hover {
    background: #f8f9fa;
}

.profile-dropdown i {
    font-size: 18px;
}

.search-input {
    padding-left: 36px !important;
    height: 36px;
    border: 1px solid #ced4da;
    border-radius: 6px;
}
