/* ===============================================
   RESET & BASE
================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: url('fences.jpg') no-repeat center center fixed;
    background-size: cover;
    margin: 0;
    color: gold;
}
.wrapper { background: rgba(0,0,0,0.5); }
.form-box.login { background: rgba(50,50,50,0.7); }

/* ===============================================
   BOOTSTRAP NAVBAR CUSTOMIZATION
================================================= */
.navbar-custom {
    background-color: rgba(0, 100, 0, 0.85);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: gold !important;
}

.navbar-custom .dropdown-menu {
    background-color: rgba(0, 80, 0, 0.95);
}

.navbar-custom .dropdown-item {
    color: gold;
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(255, 215, 0, 0.2);
}

.wrapper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px); /* keeps below navbar */
    padding: 20px;
}

.wrapper {
    position: relative;
    width: 440px;
    height: auto;
    background: rgba(0,0,0,0.3);
    border: 2px solid lawngreen;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 0 30px black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow: auto;
    color: gold;
}





/* ===============================================
   CENTERING PAGES
================================================= */
.page-center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 70px); /* adjust for navbar height */
    padding: 20px;
}

/* ===============================================
   TEXT STYLING
================================================= */
.box p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

.box strong {
    color: gold;
}

/* ===============================================
   BUTTONS
================================================= */
.btn-custom {
    background-color: transparent;
    border: 2px solid lawngreen;
    color: gold;
    border-radius: 6px;
    padding: 8px 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: gold;
    color: red;
}

/* ===============================================
   FORM STYLING (optional)
================================================= */
.input-box input {
    width: 100%;
    padding: 8px;
    background: transparent;
    border: none;
    border-bottom: 2px solid purple;
    color: gold;
    font-weight: 600;
}

.input-box label {
    color: gold;
    font-weight: 500;
}

/* ===============================================
   TABLES
================================================= */
table {
    width: 100%;
    border-collapse: collapse;
    color: gold;
}

table th, table td {
    border: 1px solid lawngreen;
    padding: 8px;
    text-align: left;
}

/* ===============================================
   UTILITY CLASSES
================================================= */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }


/* Center the login wrapper on the page */
.wrapper-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 70px); /* leave room for navbar */
  padding: 20px;
}

/* The blurred, semi-opaque container you want */
.blur-panel {
  width: min(1200px, 96%);
  margin: 0 auto;
  background: var(--panel-bg) !important; /* needed for backdrop-filter to show */
  -webkit-backdrop-filter: blur(var(--panel-blur)) saturate(120%) !important;
  backdrop-filter: blur(var(--panel-blur)) saturate(120%) !important;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  box-sizing: border-box;
  position: relative; /* creates local stacking context */
  z-index: 2;         /* keep panel below navbar/dropdowns (which have 3000+) */
  overflow: visible;
}

/* Keep tables/text readable inside the panel */
.blur-panel .table,
.blur-panel p,
.blur-panel h2,
.blur-panel h3 {
  color: #fff;
}

/* small-screen tweaks */
@media (max-width: 768px) {
  .page-center-wrapper { padding: 0.5rem; min-height: calc(100vh - 56px); }
  .blur-panel { width: 100%; padding: 12px; border-radius: 10px; }
}
/* Style all buttons with class 'btn-view' */
.btn-view {
    background-color: lawngreen;
    color: black;           /* text color */
    border: 2px solid green;
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

.btn-view:hover {
    background-color: limegreen;
    color: white;
}

