@charset "UTF-8";

/* Import component styles */
@import url('./components/header.css');
@import url('./components/nav.css');
@import url('./components/card.css');
@import url('./components/scroll-card.css');
@import url('./components/button.css');
@import url('./components/table.css');
@import url('./components/footer.css');

/* Reset & Basic Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Screen Guide Color: #382B22 */
  background-color: #382B22;
  color: #cccccc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 13px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: #cccccc;
  transition: color 0.2s ease;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #382B22;
  min-height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Main Content */
main {
  padding: 30px 40px;
  background-color: #382B22;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mt-1 {
  margin-top: 8px;
}

.mt-2 {
  margin-top: 16px;
}

.mt-3 {
  margin-top: 24px;
}

.mb-1 {
  margin-bottom: 8px;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-3 {
  margin-bottom: 24px;
}

.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

/* Color utilities */
.text-primary {
  color: #bfa05f;
}

.text-warning {
  color: #ffcc00;
}

.text-muted {
  color: #888;
}

.text-success {
  color: #2ecc71;
}

.text-danger {
  color: #d0021b;
}

.text-info {
  color: #4a90e2;
}

/* Legacy class support for backwards compatibility */
.board-table {
  /* Use .table instead, but keep for compatibility */
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 12px;
}
