/* CSR Vue Component Styles */

/* csr-table */
.csr-table-wrapper { margin-top: 10px; }
.csr-table-controls { margin-bottom: 10px; font-size: 13px; }
.csr-table-controls select { padding: 2px 5px; }
.csr-table-pagination { margin-top: 10px; font-size: 13px; }
.csr-table-pagination button { padding: 4px 12px; cursor: pointer; }
.csr-table-pagination button:disabled { opacity: 0.5; cursor: default; }

/* csr-modal */
.csr-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.csr-modal-dialog {
  background: #fff;
  border-radius: 4px;
  min-width: 400px;
  max-width: 80vw;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.csr-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  background: #f5f5f5;
}
.csr-modal-title { font-weight: bold; font-size: 14px; }
.csr-modal-close { cursor: pointer; font-size: 20px; line-height: 1; color: #666; }
.csr-modal-close:hover { color: #000; }
.csr-modal-body { padding: 16px; }
.csr-modal-footer { padding: 12px 16px; border-top: 1px solid #ddd; text-align: right; }
