
      .sqft-status {
        text-align: center;
        margin-top: 18px;
        font-size: 14px;
        font-weight: 500;
      }

      .sqft-status.success {
        color: #2e8b57;
      }

      .sqft-status.error {
        color: #cc0000;
      }

      .sqft-thankyou {
        display: none;
        animation: fadeIn 0.6s ease forwards;
      }

      .sqft-thankyou h3 {
        color: #30ac9c;
        font-size: 24px;
        margin-bottom: 8px;
      }

      .sqft-thankyou p {
        color: #444;
        font-size: 16px;
      }

      .sqft-thankyou.show {
        display: block;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }