.pma-content {
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.pma-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pma-topbar h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 400;
}

.pma-topbar input{
    border:0!important;
}

.pma-search {
    width: 230px;
    height: 42px;
    border: 1px solid #ddd;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #fff;
}

.pma-search input {
    border: 0;
    outline: 0;
    width: 100%;
}

.pma-orders-card {
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.pma-filters {
    height: 58px;
    border-bottom: 1px solid #eee;
    background:#fafafa;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0 28px;
}

.pma-filters select {
    height: 38px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 0 38px 0 18px;
    background: #fff;
    font-weight: 600;
}

.pma-new-order {
    margin-left: auto;
    height: 38px;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    font-size:14px;
}

.pma-new-order img{
    margin-right: 6px !important;
}

.pma-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.pma-orders-table th {
    font-size: 13px;
    color: #333;
    font-weight: 800;
    padding: 18px 12px;
    border-bottom: 1px solid #eee;
}

.pma-orders-table td {
    padding: 20px 12px;
    border-bottom: 1px solid #eee;
    text-align: center;
    color: #666;
    font-size: 12px;
}

.pma-orders-table td, table th{
    border:0!important;
}

table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th,
.pma-orders-table td, table th{
    background-color:#FFF!important;
}

.pma-orders-table tbody tr,
.pma-orders-table thead tr{
    border-bottom:1px solid #EEE;
}

.pma-image-cell {
    width: 160px;
    position: relative;
}

.pma-product-image {
    width: 82px;
    height: 92px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin: 0 auto 6px;
    overflow: hidden;
    background: #fff;
}

.pma-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pma-art-slider {
  display: grid;
  grid-template-columns: 24px 90px 24px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pma-art-thumb {
  width: 90px;
  height: 105px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #f7f7f7;
  display: flex;
  align-items: end;
  justify-content: end;
  padding: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #ff0066;
}

.pma-art-prev,
.pma-art-next {
  border: 0!important;
  background: transparent!important;
  font-size: 28px;
  cursor: pointer;
  color: #555!important;
  padding:0!important;
}

.pma-art-slider small {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
}

.pma-art-pdf-preview {
  width: 90px;
  height: 105px;
  border: 0;
  pointer-events: none;
  background: #f7f7f7;
}

.pma-placeholder {
    width: 100%;
    height: 100%;
    background: #fafafa;
}

.pma-arrow {
    font-size: 24px;
    color: #777;
    padding: 0 8px;
}

.pma-image-cell small {
    display: block;
    font-size: 11px;
    color: #777;
}

.pma-actions {
    white-space: nowrap;
}

.pma-actions a {
    text-decoration: none;
    margin: 0;
}

.pma-actions a img{
    width:34px ;
}

.pma-empty {
    text-align: center;
    padding: 40px;
}

@media (max-width: 900px) {
    .pma-layout {
        grid-template-columns: 1fr;
    }

    .pma-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .pma-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .pma-orders-table {
        min-width: 800px;
    }

    .pma-orders-card {
        overflow-x: auto;
    }
}