
/* PO-inspired Card Styling */
.document-card[data-v-a439a857] {
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px 0 rgba(60, 60, 60, 0.06);
  min-height: 80px;
  background: #fff;
}
.document-card[data-v-a439a857]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px 0 rgba(60, 60, 60, 0.12);
}
.document-header[data-v-a439a857] {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.document-status[data-v-a439a857] {
  display: flex;
  justify-content: flex-start;
}
.document-actions-top[data-v-a439a857] {
  display: flex;
  gap: 4px;
  opacity: 1;
}
.document-icon-section[data-v-a439a857] {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0;
}
.document-icon[data-v-a439a857] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(33, 186, 69, 0.1);
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.document-card:hover .document-icon[data-v-a439a857] {
  transform: scale(1.05);
  background: rgba(33, 186, 69, 0.15);
}
.document-info[data-v-a439a857] {
  flex: 1;
  text-align: center;
}
.document-title[data-v-a439a857] {
  color: #263238;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.3;
  margin: 0 0 4px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2; /* Standard property for line clamping */
}
.document-meta[data-v-a439a857] {
  display: flex;
  gap: 4px;
  margin: 0 0 4px 0;
  justify-content: center;
    font-weight: 500;
}
.document-type[data-v-a439a857] {
    color: #666;
  font-size: 0.625rem;
  font-weight: 500;
  background: #f5f5f5;
  padding: 1px 3px;
  border-radius: 2px;
}
.document-size[data-v-a439a857] {
  color: #999;
  font-size: 0.625rem;
}
.document-details[data-v-a439a857] {
  display: flex;
  flex-direction: column;
  gap: 1px;
  align-items: center;
}
.detail-item[data-v-a439a857] {
  display: flex;
  align-items: center;
  gap: 3px;
}
.detail-text[data-v-a439a857] {
  color: #666;
  font-size: 0.625rem;
}
.amount-text[data-v-a439a857] {
  color: #21ba45;
  font-weight: 600;
}
.description-text[data-v-a439a857] {
  color: #666;
  font-style: italic;
  max-width: 120px;
    overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.approval-text[data-v-a439a857] {
  color: #1976d2;
    font-weight: 500;
}
.document-actions-bottom[data-v-a439a857] {
  border-top: 1px solid #f0f0f0;
  padding-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.action-buttons-left[data-v-a439a857] {
  display: flex;
  gap: 2px;
}
.view-btn[data-v-a439a857],
.share-btn[data-v-a439a857],
.edit-btn[data-v-a439a857],
.options-btn[data-v-a439a857],
.copy-btn[data-v-a439a857] {
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.view-btn[data-v-a439a857]:hover {
  background: rgba(33, 186, 69, 0.1);
  transform: scale(1.1);
}
.share-btn[data-v-a439a857]:hover {
  background: rgba(156, 39, 176, 0.1);
  transform: scale(1.1);
}
.edit-btn[data-v-a439a857]:hover {
  background: rgba(255, 152, 0, 0.1);
  transform: scale(1.1);
}
.options-btn[data-v-a439a857]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}
.copy-btn[data-v-a439a857]:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.1);
}

/* PO-inspired Menu Styling */
.document-options-menu[data-v-a439a857] {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: none;
}
.document-options-menu .q-item[data-v-a439a857] {
  min-height: 48px;
  padding: 12px 16px;
    border-radius: 4px;
  margin: 2px 4px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.document-options-menu .q-item[data-v-a439a857]:hover {
  background: rgba(33, 186, 69, 0.08);
}
.document-options-menu .q-item-section[data-v-a439a857] {
  min-width: 0;
}
.document-options-menu .q-item-section--avatar[data-v-a439a857] {
  min-width: 40px;
}

/* PO-inspired Button Styling */
.q-btn[data-v-a439a857] {
  border-radius: 6px;
  font-weight: 500;
  text-transform: none;
  transition: all 0.2s ease;
}
.q-btn--flat[data-v-a439a857] {
    box-shadow: none;
}
.q-btn--flat[data-v-a439a857]:hover {
    background: rgba(0, 0, 0, 0.08);
}
.q-btn--round[data-v-a439a857] {
    border-radius: 50%;
}
  
/* PO-inspired Chip Styling */
.q-chip[data-v-a439a857] {
  border-radius: 16px;
  font-weight: 500;
  min-height: 18px;
  padding: 0 5px;
}

/* Accounts Dashboard Card Styling */
.document-card[data-v-a439a857] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-left: 4px solid var(--q-primary);
}
.document-card[data-v-a439a857]:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Document Card Themes based on status */
.document-card[data-status="For Approval"][data-v-a439a857] {
  background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
  border-left: 4px solid var(--q-orange);
}
.document-card[data-status="Approved"][data-v-a439a857] {
  background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
  border-left: 4px solid var(--q-positive);
}
.document-card[data-status="Rejected"][data-v-a439a857] {
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  border-left: 4px solid var(--q-negative);
}
.document-card[data-status="Draft"][data-v-a439a857] {
  background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
  border-left: 4px solid var(--q-info);
}

/* General card styling */
.q-card[data-v-a439a857] {
  border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}
.q-card[data-v-a439a857]:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
  
/* Responsive Design */
@media (max-width: 768px) {
.document-actions-top[data-v-a439a857] {
    opacity: 1;
}
.copy-btn[data-v-a439a857],
  .view-btn[data-v-a439a857],
  .share-btn[data-v-a439a857],
  .edit-btn[data-v-a439a857],
  .options-btn[data-v-a439a857] {
    min-width: 24px;
    min-height: 24px;
}
.document-title[data-v-a439a857] {
    font-size: 0.6875rem;
}
.document-meta[data-v-a439a857] {
    flex-direction: column;
    gap: 1px;
}
.document-icon[data-v-a439a857] {
    width: 36px;
    height: 36px;
}
}

  /* Trash view styling */
.trash-card[data-v-a439a857] {
    opacity: 0.7;
    border: 1px solid #ff6b6b !important;
}
.trash-card[data-v-a439a857]:hover {
    opacity: 0.8;
}
.restore-btn[data-v-a439a857] {
    background-color: #1976d2 !important;
    color: white !important;
}
  
/* Add any specific styles for your modal here */

/* Add any specific styles for the modal here if needed */

.document-grid-view[data-v-1b461996] {
  padding: 24px;
  background: #fafafa;
}
.grid-header[data-v-1b461996] {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.grid-header h4[data-v-1b461996] {
  color: #178a2c;
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 4px 0;
}
.grid-header p[data-v-1b461996] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}
.filters-section[data-v-1b461996] {
  background: white;
  border-radius: 8px;
  padding: 20px;
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}
.grid-content[data-v-1b461996] {
  min-height: 400px;
}
.list-content[data-v-1b461996] {
  min-height: 400px;
}
.documents-table[data-v-1b461996] {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.status-chip[data-v-1b461996] {
  font-weight: 500;
  border-radius: 16px;
  min-height: 24px;
  padding: 0 8px;
}
.pagination-section[data-v-1b461996] {
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
  margin-top: 24px;
}
.pagination-section p[data-v-1b461996] {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

/* Material Design Input Styling */
.q-input--outlined .q-field__control[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-input--outlined .q-field__control[data-v-1b461996]:hover {
  border-color: #21ba45;
}
.q-input--outlined .q-field--focused .q-field__control[data-v-1b461996] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Button Styling */
.q-btn[data-v-1b461996] {
  border-radius: 4px;
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 40px;
}
.q-btn--outline[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #263238;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}
.q-btn--outline[data-v-1b461996]:hover {
  border-color: #21ba45;
  color: #21ba45;
  background: rgba(33, 186, 69, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.16);
}
.q-btn--flat[data-v-1b461996] {
  box-shadow: none;
}
.q-btn--flat[data-v-1b461996]:hover {
  background: rgba(0, 0, 0, 0.08);
}
.q-btn--round[data-v-1b461996] {
  border-radius: 50%;
}

/* Material Design Card Styling */
.q-card[data-v-1b461996] {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
}
.q-card[data-v-1b461996]:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* Material Design Table Styling */
.q-table[data-v-1b461996] {
  border-radius: 8px;
  overflow: hidden;
}
.q-table__thead th[data-v-1b461996] {
  background: #f5f5f5;
  color: #263238;
  font-weight: 500;
  border-bottom: 1px solid #e0e0e0;
  min-height: 48px;
}
.q-table__tbody tr[data-v-1b461996] {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-table__tbody tr[data-v-1b461996]:hover {
  background: rgba(33, 186, 69, 0.04);
}
.q-table__tbody td[data-v-1b461996] {
  border-bottom: 1px solid #f0f0f0;
  min-height: 48px;
}

/* Material Design Pagination Styling */
.q-pagination[data-v-1b461996] {
  border-radius: 4px;
}
.q-pagination .q-btn[data-v-1b461996] {
  border-radius: 4px;
  min-width: 40px;
  min-height: 40px;
  margin: 0 2px;
}
.q-pagination .q-btn--active[data-v-1b461996] {
  background: #21ba45;
  color: white;
  box-shadow: 0 2px 4px rgba(33, 186, 69, 0.3);
}

/* Material Design Select Styling */
.q-select--outlined .q-field__control[data-v-1b461996] {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-select--outlined .q-field__control[data-v-1b461996]:hover {
  border-color: #21ba45;
}
.q-select--outlined .q-field--focused .q-field__control[data-v-1b461996] {
  border-color: #21ba45;
  box-shadow: 0 0 0 2px rgba(33, 186, 69, 0.2);
}

/* Material Design Menu Styling */
.q-menu[data-v-1b461996] {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}
.q-list[data-v-1b461996] {
  border-radius: 8px;
}
.q-list .q-item[data-v-1b461996] {
  border-radius: 4px;
  margin: 2px 4px;
  min-height: 48px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.q-list .q-item[data-v-1b461996]:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Responsive Design */
@media (max-width: 768px) {
.document-grid-view[data-v-1b461996] {
    padding: 16px;
}
.filters-section[data-v-1b461996] {
    padding: 16px;
}
.grid-content .col-12[data-v-1b461996] {
    margin-bottom: 16px;
}
.q-btn[data-v-1b461996] {
    min-height: 36px;
}
.q-pagination .q-btn[data-v-1b461996] {
    min-width: 36px;
    min-height: 36px;
}
}
