:root {
  --background: #ffffff;
  --foreground: #0f1729;
  --card: #ffffff;
  --card-foreground: #0f1729;
  --popover: #ffffff;
  --popover-foreground: #0f1729;
  --primary: #000000;
  --primary-foreground: #ffffff;
  --secondary: #f3f4f6;
  --secondary-foreground: #0f1729;
  --muted: #f3f4f6;
  --muted-foreground: #6b7280;
  --accent: #f3f4f6;
  --accent-foreground: #0f1729;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #000000;
  --radius: 0.5rem;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--foreground);
  background-color: var(--background);
}

.navbar {
  background-color: var(--primary) !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.btn {
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover, 
.btn-outline-primary.active {
  background-color: var(--primary) !important;
  color: var(--primary-foreground) !important;
}

.btn-success {
  background-color: #10b981 !important;
  border-color: #10b981 !important;
}

.card {
  background-color: var(--card);
  border-color: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card-header {
  background-color: var(--card);
  border-bottom-color: var(--border);
  font-weight: 500;
}

.form-control, .form-select {
  border-color: var(--input);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-label {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--foreground);
}

.media-card {
  transition: all 0.2s ease;
  border-radius: var(--radius) !important;
  overflow: hidden;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.media-thumbnail {
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.copy-link {
  border-color: var(--input);
}

.upload-area {
  border-color: var(--input);
  border-radius: var(--radius);
}

.upload-area:hover, .upload-area.dragover {
  border-color: var(--primary);
  background-color: rgba(0, 0, 0, 0.02);
}

.upload-area.has-file {
  border-color: #10b981;
  background-color: rgba(16, 185, 129, 0.05);
}

.alert {
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.progress {
  height: 0.5rem;
  border-radius: var(--radius);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar-brand {
  font-weight: 600;
}

.table {
  font-size: 0.9rem;
}

.modal-content {
  border-radius: var(--radius);
}

.modal-header {
  border-bottom-color: var(--border);
}

.modal-footer {
  border-top-color: var(--border);
}

/* 미디어 페이지 스타일 수정 */
.media-container {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* 반응형 글꼴 크기 */
@media (max-width: 768px) {
  body {
    font-size: 0.85rem;
  }
  
  .btn {
    font-size: 0.85rem;
  }
  
  .form-control, .form-select {
    font-size: 0.85rem;
  }
} 