/* ===== Global Styles ===== */
html body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}



/* End Body */




.main-button {
  width: 100%;
  background: #009688;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* End Container / Form */

    


   
    /* Start Switch */
    .switch-label {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: #333;
      font-size: 18px;
      cursor: pointer;
      user-select: none;
      padding: 10px 0;
    }
    
    .switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 28px;
    }
    .switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }
    .slider {
      position: absolute;
      cursor: pointer;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: #ccc;
      transition: 0.4s;
      border-radius: 34px;
    }
    .slider:before {
      position: absolute;
      content: "";
      height: 22px;
      width: 22px;
      left: 4px;
      bottom: 3px;
      background-color: white;
      transition: 0.4s;
      border-radius: 50%;
    }
    input:checked + .slider {
      background-color: #009688;
    }
    input:checked + .slider:before {
      transform: translateX(22px);
    }
    input:focus + .slider {
      box-shadow: 0 0 1px #009688;
    }
    /* End Switch */
    
    
    
    
.title-container {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 6px;
    border: 1px solid #e3e6f0;
    margin-bottom: 25px;
}

.title-heading h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

.title-breadcrumb {
    margin-top: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.title-breadcrumb a {
    text-decoration: none;
    color: #009688;
    font-weight: 500;
    transition: 0.2s ease;
}

.title-breadcrumb a:hover {
    opacity: 0.8;
}

.title-breadcrumb span {
    color: #2c3e50;
    font-weight: 500;
}

.breadcrumb-separator {
    font-size: 12px;
    color: #009688;
}

/* -------- MEDIA QUERIES -------- */
@media (max-width: 768px) {
    .title-container {
        padding: 18px 20px;
    }
    .title-heading h1 {
        font-size: 20px;
    }
    .title-breadcrumb {
        font-size: 13px;
    }
}

    
    
    /* Start Footer */
    main {
      flex: 1;
    }

    .site-footer {
      background-color: #ffffff;
      color: #6b7280;
      text-align: center;
      padding: 20px 0;
      font-size: 14px;
      position: relative;
      bottom: 0;
      width: 100%;
      transition: background-color 0.3s ease, color 0.3s ease;
    }
    

    .site-footer .footer-content {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .site-footer a {
      color: #6b7280;
      text-decoration: none;
      padding: 0 8px;
      transition: color 0.3s ease;
    }
    

    .site-footer a:hover {
      color: #374151;
      text-decoration: none;
    }
    
     /* End Footer */
     
.message{
  margin:0 auto 25px;
  padding:12px 15px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
  max-width:400px;
  width:100%;
  display:none;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  border:1px solid transparent;
  box-shadow:0 2px 10px rgba(0,0,0,.1)
}
.message.success{border-color:#009688}
.message.success .icon{color:#009688}
.message.error{border-color:#e74c3c}
.message.error .icon{color:#e74c3c}

     
     /* ===== Found / Empty State ===== */
.found-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.found-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    max-width: 500px;
    width: 100%;
    border: 1px solid #e6e6e6;
}

.found-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.8rem 0;
    color: #009688;
    line-height: 1.4;
}

/* ===== Buttons ===== */
.found-btn {
    padding: 0.7rem 1.6rem;
    background: #009688;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: background 0.2s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.found-btn:hover {
    background: #009688;
    color: #ffffff;
}

.found-btn i {
    font-size: 1.1rem;
}
/* ===== Responsive ===== */
@media (max-width: 600px) {
    .found-card {
        padding: 2rem 1.5rem;
    }

    .found-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .found-btn {
        padding: 0.65rem 1.3rem;
        font-size: 0.95rem;
    }

    .found-btn i {
        font-size: 1rem;
    }
}