        body {
        margin: 0;
        font-family: "Chewy", cursive;
        color: #fff;
        background-image: url('whimsybg.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        background-attachment: fixed;
        }

        h1, h2, h3, p, button, input, textarea {
          font-family: inherit;
        }

        .title-box {
            text-align: center;
            margin-top: 20px;
            padding: 10px;

        }

        .card-header {
            padding: 20px;
            background-color: #a8dbaa;
            width: 40%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px 10px 0px 0px;
            height: 60px;
            box-sizing: border-box;
        }

        .card-header p {
          margin: 0;
        }
        .card-body {
            padding: 20px;
            background-color: #d7cadb;
            width: 40%;
            margin: 0 auto;
            text-align: center;
            border-radius: 0px 0px 10px 10px;
          box-sizing: border-box;
        }
        .tab-buttons {
          text-align: center;
          margin-bottom: 24px;
        }

        .tabbutton{
            background-color: #a8dbaa;
            color: white;
            padding: 10px 20px;
            margin: 10px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            border-radius: 10px;
        }

        .form-control {
          flex: 1;
          min-width: 0;
          padding: 10px;
          margin: 10px 0;
          border: 1px solid #ccc;
          border-radius: 5px;
          box-sizing: border-box;
        }

        .centered-item {
          display: flex;
          align-items: center;
          gap: 10px;
          margin: 10px auto;
        }

        .intro-text {
          display: block;
          margin: 0 0 20px;
          text-align: center;
        }

        .form-label {
          flex: 0 0 85px;
          color: #493b50;
          font-size: 18px;
          text-align: right;
        }

        .project-info {
          display: flex;
          flex-direction: column;
          gap: 0px;
          margin-top: 10px;
        }

        .project-info input, .project-info textarea {
          width: 100%;
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 5px;
          margin: 0;

        }

        .project-card {
          background-color: #d7cadb;
          border-radius: 10px;
          padding: 10px;
          text-align: center;
          height: 100%;
          width: 100%;
          box-sizing: border-box;        
        }

        .project-grid {
          display: grid;
          grid-template-columns: repeat(3, minmax(0, 1fr));
          gap: 20px;
          padding: 20px;
          width: 80%;
          max-width: 900px;
          margin: 0 auto;
          box-sizing: border-box;

        }

        .project-header-pill {
          background-color: #d7cadb;
          padding: 20px;
          border-radius: 10px;
          width: 40%;
          margin: 0 auto 10px auto;
          display: flex;
          justify-content: center;
          align-items: center;
          min-height: 100px;
          box-sizing: border-box;
          flex-direction: column;
          gap: 8px;
        }

        .cover-upload-box {
          background-color: #f0f0f0;
          border: 2px dashed #ccc;
          border-radius: 10px;
          padding: 20px;
          cursor: pointer;
          position: relative;
          height: 150px;
          display: flex;
          justify-content: center;
          align-items: center;
          box-sizing: border-box;
        }

        .project-info input, .project-info textarea {
          width: 100%;
          padding: 10px;
          border: 1px solid #ccc;
          border-radius: 5px;
          margin: 0;
          box-sizing: border-box;
        }

        .savebutton {
          background-color: #a8dbaa;
          color: white;
          padding: 10px 20px;
          margin: auto;
          display: block;
          border: none;
          cursor: pointer;
          font-size: 16px;
          border-radius: 10px;
          align-items: center;
        }

        .cover-upload-box img {
          display: none;
          max-width: 100%;
          max-height: 100%;
          object-fit: contain;
          margin: 0 auto;

        }

        .cover-upload-box span {
            display: block; /* Ensures the span is visible by default */
            color: #493b50;
            font-size: 14px;
            pointer-events: none; /* Prevents the span from blocking clicks */
}
