* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  background: #f8fafc;
  color: #0f172a;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: white;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .logo {
  padding: 32px;
}
.sidebar .logo h2 {
  color: #2563eb;
  font-size: 28px;
  font-weight: 700;
}
.sidebar .logo p {
  color: #64748b;
  margin-top: 8px;
  font-size: 14px;
}
.sidebar nav {
  padding: 0 16px;
}
.sidebar nav ul {
  list-style: none;
}
.sidebar nav li {
  padding: 14px 18px;
  border-radius: 12px;
  cursor: pointer;
  margin-bottom: 8px;
  font-weight: 500;
  transition: 0.2s;
}
.sidebar nav li:hover {
  background: #f1f5f9;
}
.sidebar nav li.active {
  background: #dbeafe;
  color: #2563eb;
  font-weight: 700;
}
.sidebar .discord-card {
  margin: 20px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: white;
}
.sidebar .discord-card h4 {
  margin-bottom: 8px;
}
.sidebar .discord-card p {
  color: #16a34a;
  font-weight: 600;
}

.main {
  flex: 1;
  padding: 40px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.header h1 {
  font-size: 40px;
  margin-bottom: 8px;
}
.header p {
  color: #64748b;
}

.create-btn {
  border: none;
  background: #2563eb;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.create-btn:hover {
  background: #1d4ed8;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.next-event h2 {
  margin-bottom: 24px;
}

.event-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.event-icon {
  width: 120px;
  height: 120px;
  background: #eff6ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 42px;
}

.event-detail {
  flex: 1;
}
.event-detail h3 {
  margin: 12px 0;
  font-size: 32px;
}
.event-detail p {
  color: #64748b;
  margin-bottom: 6px;
}

.notification-status {
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.status-item {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
}
.status-item strong {
  font-weight: 600;
}
.status-item span {
  color: #64748b;
}
.status-item.done span {
  color: #2563eb;
  font-weight: 700;
}

.badge {
  display: inline-block;
  background: #dbeafe;
  color: #2563eb;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}
.badge.waiting {
  background: #fef3c7;
  color: #d97706;
}
.badge.closed {
  background: #e5e7eb;
  color: #6b7280;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  padding: 16px;
  color: #64748b;
  font-weight: 600;
  border-bottom: 1px solid #e2e8f0;
}

tbody tr {
  transition: 0.15s;
}
tbody tr:hover {
  background: #fafafa;
}
tbody td {
  padding: 22px 16px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.edit-btn,
.delete-btn {
  border-radius: 10px;
  padding: 8px 18px;
  cursor: pointer;
  font-weight: 600;
  background: white;
}

.edit-btn {
  border: 1px solid #2563eb;
  color: #2563eb;
  margin-right: 8px;
}

.delete-btn {
  border: 1px solid #ef4444;
  color: #ef4444;
}

@media (max-width: 1200px) {
  .event-info {
    flex-direction: column;
    align-items: flex-start;
  }
  .notification-status {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
  }
  .main {
    padding: 20px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */