/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
<title>Products</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500;700&display=swap">
  <style>
    body {
        font-family: 'Work Sans', sans-serif;
    }
    .dnd-section{
      padding-top:0px !important;
      padding-bottom: 0px;
    }
    .gradient-header-wrapper {
      position: relative;
      width: 100vw; /* Full viewport width */
      left: 50%;
      right: 50%;
      margin-left: -50vw; /* Center the wrapper */
      margin-right: -50vw; /* Center the wrapper */
      background: linear-gradient(45deg, rgb(30, 213, 164) 0%, rgb(167, 224, 207) 100%);
    }

    .gradient-header {
      padding: 120px 40px;
      text-align: center;
      padding-bottom: 22px;
      position: relative; /* Ensure it stays in the normal flow */
      color: white;
      padding-left:6%;
      padding-right:6%;
    }
    .gradient-header h1 {
        margin: 0;
        font-size: 3.9em;
        color: #fff;
        font-weight: 100;
      	font-family: 'Work Sans', sans-serif;
      	text-align:left;
        margin-left: 4%;
    }
    .search-container {
        margin: 20px 0;
        position: relative;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .search-input {
        width: 100%;
        padding: 10px 40px 10px 10px;
        font-size: 27px;
        border: 1px solid #ccc;
        border-radius: 10px;
        text-align: center;
        font-weight: bold;
    }
    .search-icon {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: #f0c040;
        font-size: 33px;
        pointer-events: none;
    }
    .contact-button-container {
        display: flex;
        justify-content: center;
      	margin-top: 32px;
    }
    .filter-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        margin-top: 32px;
        padding-left: 60px;
        padding-right: 60px;
    }
    .filter-container {
        position: relative;
        flex: 1;
        margin: 0 5px;
    }
    .filter-select {
        width: 100%;
        padding: 15px;
        text-align: left;
        border: 1px solid #555;
        border-radius: 15px;
        background-color: white;
        cursor: pointer;
        position: relative;
    }
    .filter-select::after {
        content: '\25BC';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .filter-options {
        display: none;
        position: absolute;
        z-index: 10;
        background: white;
        border: 1px solid #ccc;
        width: 100%;
        max-height: 200px;
        overflow-y: auto;
        border-radius: 0 0 10px 10px;
    }
    .filter-options.show {
        display: block;
    }
    .filter-options label {
        display: block;
        padding: 5px;
        cursor: pointer;
    }
    .filter-options label:hover {
        background-color: #f2f2f2;
    }
    .selected-filters {
        margin-top: 5px;
    }
    .selected-filters span {
        display: inline-block;
        background-color: #e1e1e1;
        padding: 3px 8px;
        margin-right: 5px;
        border-radius: 3px;
    }
    .table-container {
        overflow-x: auto;
        padding-left: 60px;
        padding-right: 60px;
      	padding-bottom: 60px;
      	padding-top: 25px;
    }
    .data-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 600px;
    }
    .data-row {
        display: flex;
        justify-content: space-between;
        padding: 10px;
        border-bottom: 1px solid #ccc;
    }
    .data-cell {
        flex: 1;
        padding: 5px;
        text-align: left;
        vertical-align: middle;
    }
    .header {
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }
    .header.sticky {
        border-bottom: 1px solid
    }
    .button-container {
        display: flex;
        justify-content: space-between;
        margin: 20px 0;
        padding-left: 60px;
        padding-right: 60px;
    }
    .clear-filter-container{
      	display: flex;
      	justify-content:center;
    }
    .clear-filters-btn{
        padding: 14px 20px;
        background-color: white !important;
        border: 1px solid #ccc !important;
        border-radius: 15px;
        cursor: pointer;
        text-align: center;
        color: #000 !important;
        text-decoration: none;
        font-size: 16px;
    }

    #clearFiltersBtn {
        padding: 17px 20px;
        font-weight: 400;
    }

    .clear-filters-container {
        flex: 0.6;
        display: flex;
        justify-content: center;
        align-items: baseline;
      
    }

    .load-more-btn {
        padding: 12px 20px;
        background-color: white !important;
        border: 1px solid #ccc;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
        color: #000 !important;
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
    }
    .sortable {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: left;
    }
    .sortable i {
        margin-left: 5px;
        color: #666;
    }
    .load-more-btn:hover, .clear-filters-btn:hover {
        background-color: rgba(241, 250, 248, 0.9) !important;
        color: #000;
        border-color: #ccc;
    }
    .start-project-btn {
        padding: 12px 60px;
        background-color: rgba(242, 206, 97, 1.0) !important;
        border: 1px solid rgba(242, 206, 97, 1.0) !important;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
        color: #000;
        text-decoration: none;
        font-size: 17px;
    }

    .start-project-btn a{
        color: #000;
        text-decoration: none;
    }
    .start-project-btn:hover {
        background-color: rgba(242, 206, 97, 0.8) !important;
        border: 1px solid #f2ce61;
        color: #000;
    }
    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgb(0,0,0);
        background-color: rgba(0,0,0,0.4);
        padding-top: 60px;
    }
    #main-content .hs-button.primary.large{
      	padding: 12px 60px;
        background-color: rgba(242, 206, 97, 1.0) !important;
        border: 1px solid rgba(242, 206, 97, 1.0) !important;
        border-radius: 20px;
        cursor: pointer;
        text-align: center;
        color: #000;
        text-decoration: none;
        font-size: 16px;
      	font-weight:500;
    }
    #main-content .hs-button.primary.large:hover {
        background-color: rgba(242, 206, 97, 0.8) !important;
        color: #000;
        border-color: #ccc;
    }
    .modal-content {
        background-color: #fefefe;
        margin: 5% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 80%;
        max-width: 600px;
        border-radius: 10px;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

    /* Media query for mobile devices */
    @media (max-width: 768px) {
      	.gradient-header-wrapper {
        	background: linear-gradient(to bottom, rgba(43, 213, 163, 1), rgba(176, 225, 212, 1));
      	}
      	.gradient-header {
        	padding-bottom: 17px;
      	}
        .filter-row {
            flex-direction: column;
            padding-left: 10px;
            padding-right: 10px;
        }
        .filter-container {
            margin: 3px 0;
        }
        .search-container {
            width: 100%;
        }
        .search-input {
            width: calc(100% - 20px);
            text-align: left;
            padding: 15px 40px 15px 10px;
        }
        .table-container {
          overflow-x: auto;
          padding-left: 10px;
          padding-right: 10px;
        }
        .data-container {
          display: flex;
          flex-direction: column;
          gap: 10px;
          min-width: 600px; /* Ajusta según sea necesario */
          width: 100%;
        }
      	.data-row {
          display: flex;
          justify-content: space-between;
          padding: 10px;
          border-bottom: 1px solid #ccc;
          min-width: 600px; /* Ajusta según sea necesario */
        }
        .data-cell {
          flex: 1;
          padding: 5px;
          text-align: left;
          vertical-align: middle;
        }
        .gradient-header h1 {
          font-size: 2.5em;
        }
        .search-input {
          font-size: 14px;
        }
        .search-icon {
          font-size:22px;
          right:26px;
        }
        .button-container {
          display: flex;
          justify-content: space-between;
          margin: 20px 0;
          padding-left: 0;
          padding-right: 0;
        }
      	.start-project-btn {
          padding: 12px 20px;
          margin-left: 5px;
      	}
      	
    }

    footer.footer .footer-row-0-background-layers {
      padding-top:60px!important;
      padding-bottom:60px;
      margin-top:60px;
    }

    @media (min-width: 1600px) {
      	
      	.gradient-header {
          max-width:1600px;
          margin: 0 auto;
      	}
    }
</style>