 
  #fuz-drop-area {
 
    padding: 0px;
    text-align: center;
    transition: border-color 0.2s;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.006);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  #upload_details{
    display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  border: 3px dashed lightgray;
  height: 70%;
  width: 80%;
  margin: 0 auto;
  }
 #loader-status{
  background-color: rgba(20,174,18,0.05);
  height: inherit;
  display: block;
  padding: 1rem ;
 }
#fuz-drop-area.highlight {
  border-color: #66aaff;
}
#fuz-browse {
  display: inline-block;
  padding: 8px 3rem;
  background: #14ae12;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
}
#fuz-browse:hover {
  background: #006799;
}

#fuz-file-list {
  height: 445px;
  overflow-y: auto;
  text-align: left;
  padding-left: 1rem;
  padding-top:2rem;
}
#fuz-file-list p {
  margin: 5px 0;
}
#fuz-file-list .error {
  color: #d00;
  display: inline-block;
  text-wrap: nowrap;
}
#fuz-file-list .success {
  color: #080;
}


.upload-item {
  margin-bottom: 12px;
  font-family: sans-serif;
}
.upload-item .file-name {
  display: inline-block;
  width: 30%;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-item .progress {
  display: inline-block;
  width: 20%;
  height: 1rem;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 10px;
}
.upload-item .progress-bar {
  width: 0;
  height: 100%;
  background: #14ae12;
  transition: width 0.2s;
}
.upload-item .status {
  display: inline-block;
  width: 20%;
  vertical-align: middle;
  font-weight: bold;
}
.upload-item .status.error {
  color: #d00;
  font-weight: bold;
}


/*** FOR FILE ICONS **/
.upload-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: sans-serif;
}
.upload-item .file-icon {
  font-size: 20px;
  margin-right: 8px;
  width: 24px; /* reserve space */
  text-align: center;
  vertical-align: middle;
}
.upload-item .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-item .progress {
  flex: 0 0 200px;
  margin: 0 10px;
  height: 16px;
  background: #eee;
  border-radius: 24px;
  overflow: hidden;
}
.upload-item .status {
  flex: 0 0 120px;
}
.upload-item .status.error {
  font-weight: normal;
  font-size: 0.8rem;
  margin-left: 0.7rem;
}
.custom-account-content{
  display: none !important;
}  
.woocommerce-notices-wrapper + #fuz-drop-area{
height: 300px !important;
}

/** filename limitd to 20ch**/
.upload-item .file-name {
  display: inline-block;
  max-width: 20ch;        /* limit to roughly 20 characters */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}




/*** SMALLER ACCOUNT **/

#fuz-drop-area_account {
 
  padding: 0rem;
  text-align: center;
  transition: border-color 0.2s;
  display: grid;
  grid-template-columns: 50% 50%;
  width: 96%;
  margin: 0 ;
  background-color: rgba(0, 0, 0, 0.006);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  height: 250px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

@media(max-width:520px){
  #fuz-drop-area_account {
    grid-template-columns: 100%;
    height: 300px;
  }
}
#upload_details_account{
  display: flex;
flex-direction: column;
gap: 1rem;
justify-content: center;
align-items: center;
padding: 1rem;
border: 3px dashed lightgray;
height: 90%;
width: 90%;
margin: 0 auto;
}
#loader-status_account{
background-color: white;
height: inherit;
display: block; 
padding: 1rem 0rem 2rem 1rem;
}

#loader-status_account #fuz-file-list {
  height: 200px;
  overflow-y: auto;
  text-align: left;
  padding-left: 1rem;
  padding-top:1rem;
}

/**preloader**/


/* Full-container semi-transparent overlay */
.fuz-preloader {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Simple spinner */
.spinner {
  border: 4px solid transparent;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: fuz-spin 0.8s linear infinite;
}

@keyframes fuz-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/***** table color style ***/



/* Base styles (optional—makes it look more Bootstrap-y) */
.fuz-files-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  border: 1px solid #DDD;
 
  margin-top: 0.3rem;  
}
.fuz-files-table .filechar{
  width: 20ch;               /* roughly 20 characters */
  white-space: nowrap;       /* keep it on one line */
  overflow: hidden;          /* hide anything past the width */
  text-overflow: ellipsis;   /* show “…” when cut off */
  display: inline-block;
}
/* Header */
.fuz-files-table thead th {
  background-color: #f5f5f5;
  color: #333;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 2px solid #dee2e6;
}

/* Cells */
.fuz-files-table tbody td {
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
}

/* Striped rows */
.fuz-files-table tbody tr:nth-of-type(odd) {
  background-color: #f9f9f9;
}
.fuz-files-table tbody tr:nth-of-type(even) {
  background-color: #ffffff;
}

/* Hover effect */
.fuz-files-table tbody tr:hover {
  background-color: #e9ecef;
}

/* Checkbox & action column tweaks (optional) */
.fuz-files-table th:first-child,
.fuz-files-table td:first-child {
  width: 2.5rem;
  text-align: center;
}
.fuz-files-table th:last-child,
.fuz-files-table td:last-child {
  width: 5rem;
  text-align: center;
}

/** pagination **/

.fuz-pagination {
  display: flex;
  justify-content:baseline;
  padding: 0;
  margin: 1rem 0;
}

.fuz-pagination .fuz-page-link {
  display: inline-block;
  margin: 0 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  color: #14ae12;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  transition: background-color 0.2s, color 0.2s;
}

.fuz-pagination .fuz-page-link:hover {
  background-color: #e9ecef;
  color: #14ae12;
}

.fuz-pagination .fuz-page-link.active {
  background-color:#14ae12;
  color: #fff;
  border-color: #14ae12;
  cursor: default;
}

.fuz-pagination .fuz-page-link.disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}
.fuz-user-files{
  position: relative;
  margin:0;
  margin-top: 1rem;
 
  width: 96%;
}
#fuz-user-files-grid{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: baseline;
  gap: 1rem;
  height: 50px;
 
}
@media(max-width:520px){
#fuz-user-files-grid{

  flex-direction: column;
 padding:1rem;
}
}
.fuz-user-files .fuz-user-files-grid h2{
display: inline !important;
}
#fuz-delete-selected{
  border:0 !important;
  padding:0.5rem 1rem !important;
  background:   #12273d !important;
  color:white !important;
  font-size: 0.7rem !important;
  font-weight: bold !important;
}