#dimension-form-container {
    max-width: 1000px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: #1d6e33;
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
    color: #1d6e33;
    text-align: center;
    margin-bottom: 20px;
}

.large-label {
    font-size: 2em;
    display: block;
    margin-bottom: 20px;
}

.input-group {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.input-group input[type="number"] {
    font-size: 2em;
    width: 80px;
    height: 50px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    -moz-appearance: textfield;
}

/* Hide arrows in WebKit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-label {
    font-size: 2em;
    margin-right: 10px;
}

.sun-shade-label {
    font-size: 2em;
    margin-right: 50px;
}

button {
    background-color: #1d6e33;
    color: white;
    font-size: 1.8em;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #44ab60;
}

.add-button-label {
    display: inline-block;
}

.next-button-container {
    display: flex;
    align-items: center;
}

.next-button,
.prev-button {
    margin: 0px 10px;
}

.error {
    color: red;
}

.sunlight-selector {
    flex-wrap: wrap
}

.sunlight-selector .option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.sunlight-selector .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.sunlight-selector .full-sun {
  background-color: #ffe105;
}

.sunlight-selector .partial-sun {
  background: linear-gradient(to right, #ffe105 50%, gray 50%);
}

.sunlight-selector .shade {
  background-color: gray;
}

/* Hide the radio buttons */
.sunlight-selector input[type="radio"] {
  display: none;
}

/* Style the icon when the radio button is checked */
.sunlight-selector input[type="radio"]:checked + .icon {
  outline: 2px solid #12421f;
  outline-offset: 2px;
}

#street {
    background-color: #575757;
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers elements horizontally */
    align-items: center;
}

/* The sidewalk div with vertical lines */
#sidewalk {
    background-color: #adadad;
    background: repeating-linear-gradient(
        90deg,
        #878787,
        #878787 10px,   /* 10% wide stripe */
        #adadad 10px,   /* Switch to #adadad exactly at 10% */
        #adadad 33%    /* 30% wide stripe */
    );
}

#sidewalk-bottom {
    background-color: #878787;
    height: 10px;
}

#tree-bed {
    width: 1100px;  /* Adjust this based on the total width of your grid */
    height: 600px;  /* Adjust this based on the total height of your grid */
    background-color: #E15000;  /* Brown background like soil */
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    margin: 0 40px;           /* Auto margins for centering */
    position: relative;
    border: 1px solid black;  /* Optional border */
}

.form-container {
    display: none;
}

.tree-zone, near-plant-zone {
    cursor: not-allowed;
}

.plant-center {
    display: flex;
    align-items: center;
    justify-content: center;
    color: 'black';
    cursor: pointer;
}

.edge-zone, .near-tree-zone {
    background-color: #ffedcf; /* Change this to your desired color */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    position: relative;
    cursor: not-allowed;
}

.tooltip {
    color: red;               /* Black text */
    font-size: 18px;
    background-color: pink;
    padding: 5px;
    z-index: 10;
}


#layout-form, #shopping-list-container {
    display: none;
}

#layout-form {
    width: fit-content;
    margin: 0 auto;
}

#layout-form-buttons, #final-buttons {
    margin-bottom: 40px;
}

#plant-filter-form {
    margin-top: 50px;
}

#seasonal-plant-selector h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Style the arrows with a lighter weight */
.page-arrow {
    text-decoration: none;
    color: #1d6e33;
    font-size: 1.2em;
    cursor: pointer;
}

.page-arrow:hover {
    color: #44ab60;
}

.page-arrow-left {
    padding-left: 120px
}

.page-arrow-right {
    padding-right: 120px;
}

/* Fixed-width title to prevent shifting */
.season-title {
    text-align: center;
    width: 320px;
}

#your-plants {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 20px;
}

#your-plants-explanation {
    width: 680px;
}

#bloom-calendar {
    display: none;
}

#bloom-calendar td {
     min-width: 100px;
     max-width: 100px;
     padding-right: 14px;
     font-size: smaller;
}

.toggle-arrow {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.2s ease;
    font-size: 16px;
    margin-left: 5px;
}

.rotated {
    transform: rotate(90deg);
}

.plant-card {
    cursor: pointer;
    padding: 5px;
    margin: 5px;
    background: linear-gradient(145deg, #72C96C, #8ADD87 20%, #72C96C);
    border: 2px solid #4F8E4D;
    border-radius: 10px; /* Slightly rounded corners */
    color: #444444;
    line-height: 1.5em;
}

.plant-card.selected {
    border: 2px solid #007bff;
}

.plant-card > input {
    margin-right: 10px;
}

.plant-name {
    font-size: 18px;
    font-weight: bold;
}

.plant-card-label {
    color: #2F5B2F;
    font-weight: bold;
}

.include-exclude-button {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  background-color: transparent;
  padding: 10px 10px;
}

.include-exclude-button:hover {
  background-color: transparent;
}

input[type="radio"] {
    accent-color: #4A8C4A; /* Change the radio button color to dark green */
    width: 15px; /* Optional: adjust size */
    height: 15px; /* Optional: adjust size */
    cursor: pointer; /* Change cursor on hover */
}

.remove-button-label {
    font-size: 50px;
}

.plant-option {
    display: flex;
    align-items: center;
    margin: 5px 0;
}


.shopping-list-item {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}