/* Sidebar header background color */
.wy-side-nav-search,
.wy-side-nav-title {
    background-color: #004238;
    /* Green background color */
    color: #ffffff;
    /* White text color */
}

/* Change the background color of the main content area */
.rst-content {
    background-color: #F7F8D8;
    /* Light green background color */
}

/* Change the background color of the documentation container */
.wy-nav-content-wrap {
    background-color: #F7F8D8;
    /* Light green background color */
}

/* Change the background color of the documentation content */
.wy-nav-content {
    background-color: #F7F8D8;
    /* Light green background color */
}

/* Style the .grid and .card classes */
.tile-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .tile {
    flex: 1;
    min-width: 220px;
    border-left: 4px solid #4b8bbe;
    padding: 1rem;
    background-color: #f5f7fa;
    border-radius: 12px;
  }
  
  .tile:hover {
    background-color: #eef3f8;
  }
  
  .tile h3 {
    margin-top: 0.5rem;
  }
  
  .tile img {
    float: left;
    margin-right: 10px;
    width: 40px;
  }
  
  