
.my_plugin {
  background: #ffffff;
  color: #333;
  margin: 8px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 30px 20px 15px;
  border-radius: 20px;
  border:2px solid #f5b608;
}

.tabs { display: flex; gap: 6px; justify-content: center; }
.tab-btn { padding: 8px 12px; border-radius: 6px; border: 1px solid #1a1f71; background: #f7f7f7; cursor: pointer;font-size: 14px; }
.tab-btn.active { background: #1a1f71; color: #fff; border-color: #1a1f71; }
.tab { display: none; }
.tab.active { display: block; }
input[type=file], input[type=text] { display: block; margin: 8px auto; width: 96%; padding: 16px 12px; border: 1px solid #f7b600; border-radius: 4px;margin-bottom: 20px; }
table { width: 100%; border-collapse: collapse; margin-top: 8px; }
th, td { border: 1px solid #eee; padding: 6px; text-align: left; vertical-align: middle; }
th { background: #f6f6f6; }
.rename { font-weight: 600; color: #1a1f71;font-size: 12px; }
.thumb { width: 64px; height: 64px; object-fit: cover; border: 1px solid #ddd; border-radius: 4px; }
.icon { font-size: 28px; display: inline-block; width: 64px; height: 64px; line-height: 64px; text-align: center; border: 1px solid #ddd; border-radius: 4px; background: #fafafa; }
.saveAll { display: block; width: 100%; margin-top: 10px; padding:14px 10px; font-size: 16px; background: #f7b600 ; color: #fff; border: none; border-radius: 6px; cursor: pointer;font-weight: 700; }
.saveAll:hover { background: #f5b608; }

.tab h3{
  color:#1a1f71;
}

.resetBtn {
  margin-right: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #1a1f71;
  background: #f2f2f2;
  cursor: pointer;
}
.resetBtn:hover { background: #e6e6e6; }

input.custom-name {
  width: 92% !important;
}

/*prem*/
.upload-container {
      display: flex;
      align-items: center;
      gap: 10px;
      border: 2px solid #f5b608;
      border-radius: 8px;
      background: #fff;
      padding: 10px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 20px;
      position: relative;
    }

    .file-input-label {
      background-color: #1a1f71;
      color: white;
      padding: 10px 16px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s;
      font-size: 14px;
      position: absolute;
      top:0;left: 0;
      margin:3px;
    }

    .file-input-label:hover {
      background-color: #1a1f71;
    }

    input[type="file"] {
      opacity: 0;
      width: 100%;
      margin: 0px;
      padding: 0px;
    }

    .file-name {
    flex: 1;
    padding: 0 10px;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 110px;
    margin-top: 15px;
}
    td{
      font-size: 12px;
    }
    td input[type=file], td input[type=text]{
      padding: 6px 4px;
    }
    th{
      font-size: 14px;
    }
    .table-responsive table#fileTable_v3 td.orignal{
      overflow-x: auto;
       width: 26%;
       max-width: 26%;
        
    }
    .table-responsive table#fileTable_v3 td.rename{
       overflow-x: auto; 
      width: 26%;
      max-width: 26%;
    
    }
    .table-responsive table#fileTable_v4 td.orignal{
      overflow-x: auto;
       width: 20%;
       max-width: 20%;
        
    }
    .table-responsive table#fileTable_v4 td.rename{
       overflow-x: auto; 
      width: 20%;
      max-width: 20%;
    
    }
    
    .table-responsive table td.image-prev {
        width: 90px;
        max-width: 90px;
        text-align: center;
    }
    @media screen and (max-width: 767px) {
      .tabs {
        display: block;
      }
      .tab-btn{
        margin-bottom: 10px;
        padding: 3px 10px;
      }
      .resetBtn{
         padding: 3px 10px;
      }
      .tab h3 {
        font-size: 20px;
        text-align: center;
        font-weight: 600;
        margin: 10px 0px 20px;
      }
    }