body, textarea {
    font-family: Arial, sans-serif;
    text-shadow: 1px 1px 1px rgba(116, 116, 116, 0.1);
    background-color: #ffffff;
    margin: 0;
}

.container {
    display: flex;
    min-height: 100vh;
    flex-wrap: wrap;

}
/* LEFT PANEL */
.left-panel {
    flex: 4;
    background-color: #1e75c3;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 2rem; */
}
    .inner {
        align-items: center;
        padding:0 5rem;
    }
    .left-panel h1 {
        align-content: flex-start;
        font-size: 2.5rem;
        line-height: 1.3;
        text-align: left;
    }

/* RIGHT PANEL */
.right-panel {
    /* flex-grow: 2; */
    flex: 5;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-title {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  /* FORM ELEMENTS */
.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: flex;
        margin-bottom: 0.25rem;
        font-weight: 600;
        align-items: center;
    }

    .form-group label .smaller {
        font-weight: normal;
        font-size: .70rem;
        color: #9E9E9E;
        padding: 0 0.3rem;
        font-stretch: 90%;
    }

    .form-group small {
        font-size: 0.80rem;
        color: #666;
    }
    
    .form-group input[type="text"],
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.65rem;
      font-size: .9rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin-top: .5rem;
    }

    .form-group input[type="file"] {
      width: 100%;
      margin-top: .5rem;
    }


    .form-group textarea {
      resize: vertical;
      min-height: 100px;
    }

    .error {
        font-size: .75rem;
        color: #c32b2b;
        padding: .5rem;
    }
    .form-group input[type="text"].error-highlight,
    .form-group label.error-highlight,
    .form-group textarea.error-highlight,
    .form-group select.error-highlight {
        border: 2px solid #c32b2b !important;
    }

    #wordCount{
        float: right;
    }

    #location {
        margin-top: 3rem;
    }
    .row {
        flex-direction: row;
        flex-wrap: wrap;
        display: flex;
        gap: 1rem;
    }
    .row .form-group {
        flex: 1 1 calc(50% - 0.5rem)
    }

    .file-upload-wrapper {
        position: relative;
        display: flex;
        margin-top: 1rem;
        align-items: center;
        gap: 1rem;
      }
  
      .file-upload-wrapper input[type="file"] {
        opacity: 0;
        width: 0.1px;
        height: 0.1px;
        position: absolute;
        overflow: hidden;
        z-index: -1;
      }
  
      .file-upload-label {
        padding: 0.6rem 1rem;
        color: #333;
        background-color: #f1f1f1;
        border-radius: 4px;
        cursor: pointer;
        font-size: .9rem;
      }
      .file-upload-label:hover {
        background-color: #e2e2e2;
      }

      .file-upload-label i {
        margin: 0 0.5rem;
      }

#budget-button-group {
    margin-top: 1rem;
    justify-content: space-between;
    gap: .2rem  ;
}
    #budget-button-group label {
        border: 1px solid #f1f1f1;
        padding: .5rem 5rem .5rem .5rem;
        border-radius: 4px;
        cursor: pointer;
    }
    #budget-button-group label:hover {
        border: 1px solid #f1f1f1;
        background-color: #e2e2e2;
    }

    #budget-button-group input {
        padding: 0;
        margin: 0 0.5rem;
    }

#submissions {
    display: block;
    a {
        font-size: .9rem;
        text-decoration: none;
        float: right;
    }
}

.form-group-buttons {
    display: flex;
    justify-content: space-between;
}

.divider {
    border: none;
    border-top: 1px solid #e2e2e2;
    margin: 1.5rem 0; /* Adjust vertical spacing as needed */
}
button, .button {
    background-color: #0f6eb9;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    white-space: nowrap;
}

button:hover, .button:hover {
    background-color: #014c97;
}
.button {
    text-decoration: none;
}
button[type="reset"] {
    background-color: #fff;
    color: #3d3d3d;
}
button[type="reset"]:hover {
    background-color: #e2e2e2;
    color: #3d3d3d;
}
#dashboard-button-wrapper{
    margin-top: auto;
    display: flex;
    gap: .5rem;
    align-items: center;
}

#back-to-form {
    font-size: .9rem;
    margin-bottom: 1rem;
    a {
        text-decoration: none;
    }
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: #fff;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 1rem);
    font-size: .9rem;

  }
*, *::before, *::after {
    box-sizing: border-box;
  }

@media (max-width: 768px) {

}