/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans KR, sans-serif;
}

a {
  color: inherit;
}

/* [project]/app/lcms-common.css [app-client] (css) */
.lcms-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.lcms-page-header {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 24px;
  padding-bottom: 16px;
}

.lcms-page-title {
  color: #1a1a1a;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.lcms-nav {
  background: #2c3e50;
  padding: 0 20px;
  box-shadow: 0 2px 4px #0000001a;
}

.lcms-nav-list {
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.lcms-nav-item a {
  color: #ecf0f1;
  padding: 16px 20px;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s;
  display: block;
}

.lcms-nav-item a:hover, .lcms-nav-item a.active {
  color: #fff;
  background: #34495e;
}

.lcms-form-group {
  margin-bottom: 16px;
}

.lcms-form-label {
  color: #333;
  margin-bottom: 6px;
  font-size: .9rem;
  font-weight: 500;
  display: block;
}

.lcms-form-input, .lcms-form-select, .lcms-form-textarea {
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  padding: 10px 12px;
  font-size: .95rem;
}

.lcms-form-input:focus, .lcms-form-select:focus, .lcms-form-textarea:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 2px #3498db33;
}

.lcms-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.lcms-btn {
  cursor: pointer;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background .2s, color .2s;
  display: inline-flex;
}

.lcms-btn-primary {
  color: #fff;
  background: #3498db;
}

.lcms-btn-primary:hover {
  background: #2980b9;
}

.lcms-btn-secondary {
  color: #fff;
  background: #95a5a6;
}

.lcms-btn-secondary:hover {
  background: #7f8c8d;
}

.lcms-btn-success {
  color: #fff;
  background: #27ae60;
}

.lcms-btn-success:hover {
  background: #219a52;
}

.lcms-btn-group {
  gap: 10px;
  margin-top: 16px;
  display: flex;
}

.lcms-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 1px 3px #0000000d;
}

.lcms-card-title {
  color: #2c3e50;
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.lcms-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

.lcms-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .9rem;
}

.lcms-table th, .lcms-table td {
  text-align: left;
  border-bottom: 1px solid #eee;
  padding: 12px 14px;
}

.lcms-table th {
  color: #333;
  background: #f8f9fa;
  font-weight: 600;
}

.lcms-table tbody tr:hover {
  background: #f8f9fa;
}

.lcms-login-wrap {
  background: #ecf0f1;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
}

.lcms-login-box {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  box-shadow: 0 4px 20px #0000001a;
}

.lcms-login-title {
  text-align: center;
  color: #2c3e50;
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.lcms-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  display: grid;
}

@media (max-width: 768px) {
  .lcms-grid-2 {
    grid-template-columns: 1fr;
  }

  .lcms-nav-list {
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=app_2f406330._.css.map*/