#saved-code {
    display: flex;
    gap: 5px;
    flex-direction: column;
}
    #fileWrappers {
      display: flex;
      flex-wrap: wrap;
      
    }

    .file-wrapper {
        box-sizing: border-box;
        margin-bottom: 10px;
        padding: 25px;
        border: 1px solid #ddd;
        background-color: #fff;
        border-radius: 20px;
        transition: background-color 0.3s ease;
        display: flex;
        flex-direction: row; /* Change to column layout */
        justify-content: space-between;
        align-items: stretch; /* Stretch to fill the container */
    }
    
    .file-wrapper > .options {
        flex-shrink: 0; /* Ensure options div doesn't shrink */
    }
    
    /* Add the following style to prevent the buttons from affecting the width */
    .file-wrapper > .buttons {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
    }
    
.buttons {
    margin-bottom: 40px;
}
    

    
    .file-wrapper:hover {
        background-color: #f0f0f0;
    }

    .dropdown {
        display: none;
    }

    .icon-ani {
      margin-bottom: 0px;
      width: 150px;
      display: flex;
      align-items: center;
    }

    .name {
      font-weight: bold;
      width: 350px;
    }

    .format {
      margin-bottom: 5px;
      width: 150px;
    }


    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    #copyButton {
      margin-top: 10px;
      padding: 5px 10px;
      cursor: pointer;
    }

    #Posts-product-link {
      display: none;
    }

    .deleteButton {
        color: #bb3838;
        background-color: transparent;
        outline: 1px solid #bb3838;
        border: 0;
        padding: 10px 15px;
        border-radius: 10px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
      
      .deleteButton:hover {
        background-color: #ffd7d7;
              transition: 0.2s;
      }

      .copyButton {
        background-color: var(--primary-color);
        color: var(--background);
        padding: 10px 15px;
        border: none;
        border-radius: 10px;
        font-size: 14px;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      #generate-Posts-code-button {
        background-color: var(--primary-color);
        color: var(--background);
        padding: 10px 30px;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
        height: 72px;
      }
      
      #generate-Posts-code-button:hover {
        background-color: #1a1a1a; /* Darken the color on hover */
      }

        .top-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
  }


  