.button_header {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%; /* Optional: Ensures full width */
    margin-bottom: 39px !important;
}
.button_header h2 {
    margin: 0px !important;
}
ul.fileview {
    list-style: none;
    padding: 0px;
}
.rma-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.rma-table th, .rma-table td {
    /* padding: 8px 12px; */
    /* text-align: center; */
    border: none !important;
}
.rma-table th {
    background-color: #f9f9f9;
}

.imagecusproject img {
    width: 63px;
    height: 63px !important;
    object-fit: fill;
}
td.imagecusproject {
    display: inline-flex;
    gap: 16px;
}
/* project banner css */

 /* Banner Section */
.banner {
  display: flex;
  align-items: center;
  background: #f3f7ff;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 40px;
}

.banner img {
  height: 100px;
  margin-right: 20px;
}

.banner-text {
  font-size: 16px;
}

.banner-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}

.banner-text a {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
}

.banner-text a:hover {
  text-decoration: underline;
}

/* Projects Section */
.projects h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.projects p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.projects button {
  background: #fff;
  border: 1px solid #214385;
  color: #214385;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.projects button:hover {
  background: #214385;
  color: #fff;
}

button.add-to-project-btn {
    cursor: pointer;
}

/* Popup Content Box */
 /* Overlay */
  #project-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }

  /* Modal */
  #project-popup .popup-content {
    background: #fff;
    border-radius: 12px;
    max-width: 555px;
    width: 100%;
    padding: 24px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    margin: 8% auto;
  }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    border: 0;
    background: transparent;
    font-size: 15px;
    cursor: pointer;
    position: absolute;
    top: 8px;
}

.lead {
    margin: 12px 0;
    color: #333;
}
.input_cus label, .lead{
    font-size: 13px;
}
select, input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.btn.ghost {
    background: #f2f2f2;
    color: #333;
}
.btn.primary {
    background: #f7642a;
    color: #fff;
}

/* Form Elements */
.popup-content form {
    display: flex;
    flex-direction: column;
}

.popup-content select,
.popup-content input,
.popup-content button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Button Styling */
.popup-content button {
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.add_project {
    position: absolute;
    top: 0;
    right: 0;
}
.add_levertijd{
    border-top: 1px solid #ddd;
}

.add-to-project-btn img {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #F6F6F6;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.06);
    padding: 6px;
}
.projectvew ul#shipping_method li {
    margin: 0;
    line-height: 17px;
    list-style: none outside;
    font-size: 10px;
}
.totalbox tr.woocommerce-shipping-totals.shipping {
    border-bottom: 1px solid #ddd !important;
    border-top: 1px solid #ddd !important;
}
/* Close Button (optional, if you want to add a close button) */
.popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.projects {
    margin-bottom: 30px;
}

.user-projects-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #f9fbfc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.product-left img {
  max-width: 80px;
  border-radius: 6px;
}

.product-center {
  flex: 1;
  margin-left: 20px;
}

.product-center h3 {
  font-size: 16px;
  margin: 0 0 5px;
}

.product-center .sku {
  font-size: 13px;
  color: #666;
}

.product-center .extra {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.product-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 160px;
}

.unit-price .price, .total-price strong {
    font-size: 12px !important;
    font-weight: bold;
}

.unit-price small,
.total-price small {
  font-size: 12px;
  color: #666;
}

.quantity-box {
    display: flex !important;
    align-items: center;
    gap: 8px;
    background-color: #f8f9fa !important;
}

.remove-item {
  background: none;
  border: none;
  color: darkred;
  font-size: 18px;
  cursor: pointer;
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
}

.qty-control button {
  background: none;
  border: none;
  padding: 6px 10px;
  font-size: 16px;
  cursor: pointer;
}

.qty-control input {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
}

.unit-price, .total-price {
    display: grid;
}
.product-center a.producttitle {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
}
button.button.add-all-to-cart {
    background-color: #47cfac !important;
    color: #ffffff !important;
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 16px 20px;
    font-weight: 700;
    border-radius: 8px;
    left: auto;
    border: 0;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}
.project-actions {
    text-align: right;
    display: grid;
}
.projectTitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
span.removeproject {
  background: #dc3545;
  color: #fff;
  border: none;
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
span.removeproject:hover {
  background: #b32d3a;
}


/*.totalbox {
    width: 50%;
    float: right !important;
    text-align: right;
    display: block;
    margin: 0 50% 0;
}*/
.totalbox span.price {
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}
.woocommerce .totalbox table.shop_table td{
  line-height: 12px;
}
.totalbox table tbody>tr:nth-child(odd)>td, .totalbox table tbody>tr:nth-child(odd)>th {
    background-color: #fff !important;
}

.totalbox tr.order-total span.price-dec {
    display: inline !important;
}

.product-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 2px 2px 50px rgba(38, 63, 77, 0.1);
    padding-bottom: 24px;
    padding-top: 12px;
    margin-bottom: 20px;
}


/* ticket new css */
:root {
  --soft-blue: #f0f6ff;
}

.ticket-dashboard {
  font-family: "Inter", sans-serif;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
  max-width: 1200px;
  margin: 40px auto;
}

/* Header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.ticket-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.btn.ticket-new {
  background-color: #22c55e;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn.ticket-new:hover { opacity: 0.9; }

.ticket-intro {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

/* Table */
.ticket-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.ticket-table th {
  background: #f8fafc;
  color: #334155;
  text-align: left;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 1px solid #e5e7eb;
}
.ticket-table td, .ticket-table th {
    border: none !important;
}

.ticket-table td {
  padding: 16px 10px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}

/* Alternating rows */
.ticket-row:nth-child(odd) { background-color: #fafbfc; }
.ticket-row:hover { background-color: #f1f5f9; }

/* View button */
.ticket-view-btn {
    color: #214385;
    font-weight: 600;
    text-decoration: none;
    font-size: 13px;
}
/*.ticket-view-btn:hover {
  background-color: #0d9488;
}*/

/* File link */
.file-link {
  font-weight: 600 !important;
}
.file-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .ticket-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ticket-table th, .ticket-table td { font-size: 12px; }
}

a.add_ticket.button {
    background: #214385 !important;
}
.ticket-confirmation {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  font-family: "Inter", sans-serif;
}

.ticket-icon {
  font-size: 40px;
  color: #007cba;
  margin-bottom: 10px;
}

.ticket-confirmation h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.ticket-confirmation p {
  color: #555;
  line-height: 1.6;
}

.ticket-number-box {
  background: #eef6ff;
  border: 1px solid #bfdbfe;
  padding: 12px 20px;
  margin: 20px auto;
  border-radius: 8px;
  display: inline-block;
  font-size: 18px;
}

.ticket-number {
  color: #1d4ed8;
  font-weight: 700;
  margin-left: 6px;
}

.ticket-btn {
  display: inline-block;
  background: #007cba;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  margin-top: 15px;
  transition: background 0.2s ease;
}

.ticket-btn:hover {
  background: #005a87;
}

.ticket-note {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}
.reply_ticketbtn {
    background-color: #F7642A !important;
    padding: 12px 32px;
    border-radius: 3px;
    font-size: 14px;
    margin-right: 0px;
    border: none !important;
    color: #fff;
}

/* reply css */
/* Container */
.ticket-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-light);
}
.ticket-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}
.ticket-status {
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* Chat sectie */
.chat-area {
  padding: 25px;
  background: var(--bg-light);
  flex: 1;
  overflow-y: auto;
  max-height: 500px;
}
.message {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
.message.support .bubble {
  align-self: flex-start;
  background: #e9eff7;
  color: var(--text-dark);
}
.message.user .bubble {
  align-self: flex-end;
  background: var(--blue);
  color: #fff;
}
.bubble {
  padding: 12px 18px;
  border-radius: 18px;
  max-width: 75%;
  font-size: 15px;
  position: relative;
  line-height: 1.5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.bubble strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}
.time {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 0.8;
}
.message.user .time {
  color: #d1e7ff;
}
.attachments {
    margin-top: 8px;
    display: flex;
}
.attachment {
  display: inline-block;
  background: #fff;
  color: var(--blue);
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 13px;
  border: 1px solid var(--border);
  margin-right: 6px;
}
.message.user .attachment {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}
.attachment:hover {
  opacity: 0.8;
}

/* Reply formulier */
.reply-form {
  border-top: 1px solid var(--border);
  padding: 20px 25px;
  background: #fff;
}
.reply-inputs {
  display: flex;
  flex-direction: column;
}
.reply-inputs textarea {
  width: 100%;
  min-height: 120px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
  font-size: 15px;
  resize: vertical;
  margin-bottom: 10px;
}
.reply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.file-label {
  color: var(--blue);
  font-weight: 600;
  cursor: pointer;
}
.file-label:hover {
  text-decoration: underline;
}
.send-btn {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.send-btn:hover {
  background: #17b386;
}

/* Scrollbar stijl */
.chat-area::-webkit-scrollbar {
  width: 8px;
}
.chat-area::-webkit-scrollbar-thumb {
  background-color: #cbd5e1;
  border-radius: 6px;
}
.original.message.user .bubble {
    background-color: #20c997;
    width: 100%;
}
.original.message.user .time {
    color: #fff !important;
}

/* rma new css */

.rma-dashboard {
  font-family: "Inter", sans-serif;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.03);
  max-width: 1200px;
  margin: 40px auto;
}

.rma-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.rma-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.btn.rma-new {
  background-color: #214385;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.btn.rma-new:hover { opacity: 0.9; }

.rma-intro {
  font-size: 14px;
  color: #475569;
  margin-bottom: 20px;
}

/* Tabel */
.rma-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.rma-table th {
  background: #f8fafc;
  color: #334155;
  text-align: left;
  font-weight: 600;
  padding: 12px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.rma-table td {
  padding: 16px 10px;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: top;
}

.rma-row:last-child td {
  border-bottom: none;
}

/* RMA scheiding (subtiel, strak) */
.rma-row {
  background-color: #fff;
  transition: background 0.15s ease;
}
.rma-row:nth-child(odd) {
  background-color: #fafbfc;
}
.rma-row:hover {
  background-color: #f1f5f9;
}

/* Product */
.rma-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rma-product-info {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f9fafb;
}

.rma-product-info strong {
  color: #0f172a;
  font-weight: 600;
}

.rma-product-meta {
  font-size: 12.5px;
  color: #64748b;
  margin-top: 4px;
}

.rma-product-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 2px 0;
}

/* Aantal */
.rma-product-qty {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-weight: 600;
}

/* Status */
.status {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.status.pending { background: #dbeafe; color: #1d4ed8; }
.status.approved { background: #dcfce7; color: #15803d; }
.status.rejected { background: #fee2e2; color: #b91c1c; }

/* Link */
.file-link {
  color: #214385;
  text-decoration: none;
  font-weight: 500;
}
.file-link:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
  .rma-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .rma-table th, .rma-table td { font-size: 12px; }
    
table.rma-table {
    overflow-x: auto !important;
    white-space: nowrap;
    display: block;
}
}
/* rma confirmation css */
.rma-confirmation {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}
.rma-icon {
  font-size: 40px;
  color: #16a34a;
  margin-bottom: 10px;
}
.rma-confirmation h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.rma-confirmation p {
  color: #555;
  line-height: 1.6;
}
.rma-number-box {
  background: #eef6ff;
  border: 1px solid #bfdbfe;
  padding: 12px 20px;
  margin: 20px auto;
  border-radius: 8px;
  display: inline-block;
  font-size: 18px;
}
.rma-number {
  color: #1d4ed8;
  font-weight: 700;
  margin-left: 6px;
}
.rma-download-btn {
  display: inline-block;
  background: #007cba;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 6px;
  margin-top: 15px;
  transition: background 0.2s ease;
}
.rma-download-btn:hover {
  background: #005a87;
}
.rma-note {
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

/* project new css */
.projecten-dashboard {
  font-family: "Inter", sans-serif;
  max-width: 1100px;
  margin: 60px auto;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.projecten-titel {
    width: 76%;
}

/* Header */
.projecten-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 35px;
}
.projecten-titel h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.projecten-titel p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}
.btn-nieuw-project {
  background: var(--primary-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  height: fit-content;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 119, 204, 0.25);
  transition: all 0.2s ease;
}
.btn-nieuw-project:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Tabel */
.projecten-tabel {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}
.projecten-tabel th {
  background: var(--soft-blue);
  text-align: left;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
  padding: 14px 16px;
  border-bottom: 2px solid #dbeafe !important;
}
.projecten-tabel td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9 !important;
  font-size: 15px;
  color: #374151;
}
.projecten-tabel tr:hover {
  background: #f8fbff;
}
.projecten-tabel a {
  color: #214385;
  text-decoration: none;
  font-weight: 600;
}
.projecten-tabel a:hover { text-decoration: underline; }

/* Bekijk-knop */
.btn-bekijk {
    display: inline-block;
    color: #214385;
    text-decoration: none;
    font-size: 14px;
}
.projecten-tabel td, .projecten-tabel th{
    border: none !important;
}
/*.btn-bekijk:hover {
  background: var(--primary-blue);
  color: #fff;
  border-color: var(--primary-blue);
  box-shadow: 0 2px 5px rgba(0,119,204,0.25);
}*/
span.ticket-status.closed {
    background-color: #ef4444;
    text-transform: capitalize;
}
/* Responsive */
@media (max-width: 768px) {
  .projecten-dashboard { padding: 25px; }
  .projecten-header { flex-direction: column; align-items: flex-start; }
  .btn-nieuw-project { width: 100%; text-align: center; }
  .projecten-tabel th, .projecten-tabel td { font-size: 12px; padding: 8px; }
  .btn-bekijk { padding: 8px 14px; font-size: 13px; }
}

/*user downloads css */
.downloads-wrapper {
  max-width: 900px;
  margin: 40px auto;
  font-family: "Inter", sans-serif;
}

.downloads-block {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 35px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}

.downloads-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.downloads-subtitle {
  color: #333;
  font-size: 14px;
  margin-bottom: 20px;
}

.download-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.download-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: box-shadow 0.2s ease;
}

.download-item:hover {
  box-shadow: 0 3px 6px rgba(0,0,0,0.06);
}

.download-info {
  flex: 1;
}

.download-name {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.download-btn {
  background: #214385;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 6px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.download-btn:hover {
  background: #005f8f;
}

/* upload preview on ticket submit  */

.file-preview {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.file-preview-item {
  position: relative;
  width: 100px;
  text-align: center;
}
.file-preview-item img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.file-preview-item .remove-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  cursor: pointer;
}
.file-preview-item .pdf-icon {
  font-size: 48px;
  color: #d32f2f;
}
.file-preview-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px;
}
.file-preview {
  position: relative;
  display: inline-block;
}
.file-preview img, .file-preview iframe {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.remove-file {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff4b4b;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 12px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.file-preview span {
  display: block;
  font-size: 11px;
  text-align: center;
  max-width: 70px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*project view */

.project-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr !important;
  gap: 20px;
}

.backtopro {
    display: flex;
    margin-bottom: 20px;
}

.header-leftc {
    display: flex;
    align-items: center;
    gap: 7px;
}

.edit-link {
  color: #214385;
  text-decoration: none;
  font-weight: 600;
}
.edit-link img {
  transform: rotate(90deg);
}