/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  /* Title Bar */
  .title-bar {
    background-color: #2f855a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    color: white;
  }
  
  .logo {
    font-size: 1.8em;
    font-weight: bold;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  /* Auth Buttons */
  .auth-buttons .login-button, .auth-buttons .logout-button {
    background-color: #48bb78;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .auth-buttons .login-button:hover, .auth-buttons .logout-button:hover {
    background-color: #2f855a;
  }
  
  /* Indoor Plants Section */
  .plant-page-section {
    text-align: center;
    padding: 50px 15px;
  }
  
  .section-description {
    font-size: 1.2em;
    margin-bottom: 30px;
  }
  
  .button-container {
    margin-top: 20px;
  }
  
  .search-btn {
    background-color: #2f855a;
    color: white;
    padding: 15px 30px;
    font-size: 1.1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .search-btn:hover {
    background-color: #276749;
  }
  
  /* Plant Cards */
  .plant-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 30px;
  }
  
  .plant-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .plant-card:hover {
    transform: translateY(-5px);
  }
  
  .plant-image img {
    width: 100%;
    height: 300px;
  }
  
  .plant-content {
    padding: 15px;
  }
  
  .plant-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .plant-details a {
    color: #2f855a;
    text-decoration: none;
    font-weight: bold;
  }
  
  .plant-details a:hover {
    text-decoration: underline;
  }
  
  /* Footer */
  footer {
    background-color: #2f855a;
    padding: 7px;
    text-align: center;
    color: white;
  }
  
  .social-handles a {
    color: white;
    margin: 0 10px;
  }
  
  footer p {
    margin-top: 7px;
  }
  