main{
  padding-top: 20px;
}
.page-sidebar .inner-box
{
  padding: 20px;
}
.inner-box {
	box-shadow: 0px 0px 10px rgba(128, 125, 125, 0.23) !important;
	border-radius: 3px !important;
	background: #ffffff;
	box-shadow: 2px 4px 14px rgba(128, 125, 125, 0.5);
	margin-bottom: 30px;
	padding: 20px 15px;
	border-radius: 12px;
}
.page-sidebar .inner-box .title-2 {
  border-bottom: 1px solid #e6e6e6;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
  margin: 0 -20px 20px;
  padding: 0 20px 15px;
  font-weight: 500;
}

.user-panel-sidebar ul{
	padding-left: 0!important;
}

.user-panel-sidebar ul li {
	list-style: none;
}
.user-panel-sidebar ul li a {
	background: #ffffff;
	display: block;
	font-family: "Roboto Condensed", Helvetica, Arial, sans-serif;
	color: #2a3744;
	font-size: 14px;
	height: auto;
	letter-spacing: 0.5px;
	line-height: 26px;
	padding: 5px 10px 0 5px;
	margin-bottom: 1px;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
}


/* Main container */
.listing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header styling */
.listing-header {
    display: grid;
    grid-template-columns: 60px 100px 1fr 120px 75px;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    font-weight: 600;
    color: #495057;
    border-radius: 8px 8px 0 0;
    align-items: center;
}

.listing-header > div {
    text-align: center;
}

.listing-header .header-details {
    text-align: left;
    padding-left: 10px;
}

/* ListView container */
.responsive-listing {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Individual listing items */
.listing-item {
    display: grid;
    grid-template-columns: 60px 100px 1fr 120px 75px;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
    transition: background-color 0.2s ease;
}

/* Striped rows */
.listing-item:nth-child(even) {
    background-color: #f8f9fa;
}

.listing-item:nth-child(odd) {
    background-color: #ffffff;
}

.listing-item:hover {
    background-color: #e9ecef;
}

.item-divider::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: rgba(33, 37, 41, 0.1);
}
.item-divider {
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: center;
	width: 100%;
}

/* Checkbox column */
.item-checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-checkbox input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

/* Photo column */
.item-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-photo img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #dee2e6;
}

.item-photo .no-photo {
    width: 80px;
    height: 60px;
    background: #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 12px;
    text-align: center;
}

/* Details column */
.item-details {
    padding-left: 10px;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 5px;
    line-height: 1.3;
}

.item-meta {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.item-meta div {
    margin-bottom: 2px;
}

/* Price column */
.item-price {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
}

/* Actions column */
.item-actions {
  max-width: 60px;
  display: flex;
  justify-content:flex-end;
  align-items: center;
}
.item-actions .dropdown .btn{
  color:#f00!important;
  box-shadow: none;
  padding: 8px 12px;

}

.btn-sa-muted {
  background: #f8f9fa!important;
  border: 1px solid #dee2e6!important;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 14px;
}

.btn-sa-muted:hover {
  background: #e9ecef;
  border-color: #adb5bd;
  color: #495057;
  transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.btn-sa-muted:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.btn-sa-muted i {
    font-size: 12px;
}

/* Desktop dropdown styling */
.dropdown {
    position: relative;
}

.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-sm:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Hide mobile version on desktop */
@media (min-width: 769px) {
    .mobile-card {
        display: none !important;
    }
}
/* Mobile responsive design */
@media (max-width: 768px) {
  .listing-header {
      display: none; /* Hide header on mobile */
  }

  .listing-item {
      display: block;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 15px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .listing-item:nth-child(even),
  .listing-item:nth-child(odd) {
      background-color: #ffffff;
  }

  /* Mobile card layout */
  .mobile-card {
      display: flex;
      flex-direction: column;
      gap: 12px;
  }

  .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 15px;
  }

  .mobile-checkbox {
      flex-shrink: 0;
  }

  .mobile-content {
      display: flex;
      gap: 15px;
      flex: 1;
  }

  .mobile-photo {
      flex-shrink: 0;
  }

  .mobile-photo img,
  .mobile-photo .no-photo {
      width: 100px;
      height: 75px;
  }

  .mobile-details {
      flex: 1;
  }

  .mobile-details .item-name {
      font-size: 16px;
      margin-bottom: 8px;
  }

  .mobile-details .item-meta {
      font-size: 13px;
  }

  .mobile-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 12px;
      border-top: 1px solid #dee2e6;
  }

  .mobile-price {
      font-size: 20px;
      font-weight: 700;
      color: #28a745;
  }

  .mobile-actions {
      display: flex;
      gap: 6px;
  }

  .mobile-actions .btn-sm {
      padding: 6px 12px;
      font-size: 11px;
  }
}

@media (max-width: 480px) {
  .listing-container {
    padding: 0 10px;
  }

  .mobile-content {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-photo {
    align-self: center;
  }

  .mobile-footer {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .mobile-actions {
    justify-content: center;
  }
}

/* Dropdown menu styling */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 8px 0;
    margin: 2px 0 0;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: fadeIn 0.15s ease-out;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu-end {
    right: 0;
    left: auto;
}

/* Dropdown items */
.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 16px;
    clear: both;
    font-weight: 400;
    color: #495057;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
    border: 0;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.15s ease-in-out;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background: #f8f9fa;
}

.dropdown-item.text-danger {
    color: #dc3545;
}

.dropdown-item.text-danger:hover,
.dropdown-item.text-danger:focus {
    color: #b02a37;
    background: #f8d7da;
}

.dropdown-divider {
    height: 0;
    margin: 8px 0;
    overflow: hidden;
    border-top: 1px solid #dee2e6;
}

/* Dropdown animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cats-list-item
{
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.cats-list-item a{
  font-size: 14px;
  color: #225fac!important;
}

.portlet
{
  padding: 17px 14px;
  border-radius: 4px;
  margin: 8px 0;
}
.field-box
{
  padding:40px 60px;
}
