/* Shopify Embedded App Styles */

/* Reset */
body {
  padding: 25px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
}

/* Page Wrapper */
.container {
  padding: 0px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #f4f6f8;
  border-bottom: 1px solid #dfe3e8;
}

.header h1 {
  font-size: 20px;
  font-weight: 600;
  color: #212b36;
}

/* Buttons */
.button {
  background-color: #008060;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
}

.button:hover {
  background-color: #006e52;
}

/* Content */
.card {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #5c6ac4;
}

/* Table */
.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th,
table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #dfe3e8;
}

table th {
  background: #f4f6f8;
  font-weight: 600;
  color: #212b36;
}

/* Footer */
.footer {
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #637381;
}
