/* Professional Design for Study Challenge */
.sc-apply-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  background-color: #f8fafc;
}

.sc-apply-header {
  text-align: center;
  margin-bottom: 50px;
}

.sc-apply-header small {
  color: #FF6B00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.sc-apply-header h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.sc-apply-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.sc-apply-content {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .sc-apply-content {
    grid-template-columns: 1fr;
  }
}

.sc-sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: sticky;
  top: 20px;
  transition: transform 0.2s ease;
}

.sc-sidebar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sc-sidebar-image {
  height: 200px;
  background: linear-gradient(135deg, #e0e7ff 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-sidebar-info {
  padding: 30px;
  text-align: center;
}

.sc-badge-recommend {
  background: #dbeafe;
  color: #FF6B00;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.sc-sidebar-info h2 {
  font-size: 24px;
  margin: 0 0 20px;
  color: #1e293b;
}

.sc-logo-area {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.sc-logo-area img {
  max-height: 40px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.sc-logo-area img:hover {
  opacity: 1;
}

.sc-apply-main {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  padding: 40px;
}

.sc-form-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1px;
}

.sc-form-tab {
  background: none;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.sc-form-tab:hover {
  color: #FF6B00;
}

.sc-form-tab.active {
  color: #FF6B00;
  border-bottom-color: #FF6B00;
}

.sc-react-form .sc-form-section {
  margin-bottom: 30px;
}

.sc-react-form .sc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .sc-react-form .sc-form-row {
    grid-template-columns: 1fr;
  }
}

.sc-react-form .sc-form-field {
  margin-bottom: 25px;
}

.sc-react-form .sc-form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 14px;
}

.sc-react-form .sc-form-field input,
.sc-react-form .sc-form-field textarea,
.sc-react-form .sc-form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.sc-react-form .sc-form-field input:focus,
.sc-react-form .sc-form-field textarea:focus,
.sc-react-form .sc-form-field select:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.sc-react-form .sc-form-field input::placeholder,
.sc-react-form .sc-form-field textarea::placeholder,
.sc-react-form .sc-form-field select::placeholder {
  color: #cbd5e1;
}

.sc-react-form .sc-field-desc {
  font-size: 13px;
  color: #64748b;
  margin: -4px 0 10px;
}

.sc-form-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sc-form-footer p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.sc-btn-submit {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 6px rgba(255, 107, 0, 0.2);
}

.sc-btn-submit:hover {
  background: #E65A00;
  transform: translateY(-1px);
}

.sc-btn-submit:active {
  transform: translateY(0);
}

.sc-btn-submit:disabled {
  background: #64748b;
  cursor: not-allowed;
  transform: none;
}

.sc-auto-check {
  margin-top: 30px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.sc-auto-check .sc-check-icon {
  background: #FF6B00;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sc-auto-check strong {
  display: block;
  color: #0369a1;
  margin-bottom: 5px;
}

.sc-auto-check p {
  margin: 0;
  font-size: 14px;
  color: #0c4a6e;
  line-height: 1.5;
}

.sc-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.sc-message.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.sc-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.sc-manager-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
}

.sc-manager-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.sc-manager-header .sc-header-title h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 5px;
  color: #1e293b;
}

.sc-manager-header .sc-header-title p {
  color: #64748b;
  margin: 0;
  font-size: 15px;
}

.sc-btn-outline {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 8px;
  color: #1e293b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-outline:hover {
  background: #f8fafc;
  border-color: #FF6B00;
  color: #FF6B00;
}

.sc-manager-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.sc-manager-tabs .sc-tab {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-manager-tabs .sc-tab:hover {
  color: #FF6B00;
}

.sc-manager-tabs .sc-tab.active {
  color: #FF6B00;
  border-bottom-color: #FF6B00;
}

.sc-manager-tabs .sc-tab .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.sc-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
}

.sc-card .sc-card-header {
  padding: 20px 30px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-card .sc-card-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.sc-card .sc-card-footer {
  padding: 15px 30px;
  border-top: 1px solid #e2e8f0;
  text-align: right;
}

.sc-card .sc-card-footer .sc-link {
  color: #FF6B00;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.sc-card .sc-card-footer .sc-link:hover {
  text-decoration: underline;
}

.sc-badge-blue {
  background: #eff6ff;
  color: #FF6B00;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.sc-table-responsive {
  overflow-x: auto;
}

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

.sc-table th {
  text-align: left;
  padding: 15px 30px;
  color: #64748b;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  background: #f9fafb;
  border-bottom: 1px solid #e2e8f0;
}

.sc-table td {
  padding: 20px 30px;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
  color: #1e293b;
}

.sc-table tr:last-child td {
  border-bottom: none;
}

.sc-user-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sc-user-info .sc-avatar {
  width: 40px;
  height: 40px;
  background: #dbeafe;
  color: #FF6B00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.sc-user-info .sc-user-name {
  font-weight: 600;
  color: #1e293b;
}

.sc-user-info .sc-user-email {
  font-size: 13px;
  color: #64748b;
}

.sc-board-badge {
  background: #f1f5f9;
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.sc-status-badge {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.sc-status-badge.pending {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fcd34d;
}

.sc-status-badge.approved {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.sc-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sc-actions .sc-reply {
  background: none;
  border: none;
  color: #FF6B00;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.sc-actions .sc-reply:hover {
  text-decoration: underline;
}

.sc-toggle,
.sc-toggle-small {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.sc-toggle input,
.sc-toggle-small input {
  opacity: 0;
  width: 0;
  height: 0;
}

.sc-toggle .sc-slider,
.sc-toggle-small .sc-slider,
.sc-toggle-small .sc-slider-small {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 24px;
  display: inline-block;
}

.sc-toggle .sc-slider:before,
.sc-toggle-small .sc-slider:before,
.sc-toggle-small .sc-slider-small:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sc-toggle input:checked+.sc-slider,
.sc-toggle-small input:checked+.sc-slider,
.sc-toggle-small input:checked+.sc-slider-small {
  background-color: #FF6B00;
}

.sc-toggle input:checked+.sc-slider:before,
.sc-toggle-small input:checked+.sc-slider:before,
.sc-toggle-small input:checked+.sc-slider-small:before {
  transform: translateX(20px);
}

.sc-toggle .sc-toggle-label,
.sc-toggle-small .sc-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.sc-boards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.sc-board-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  padding: 25px;
  transition: transform 0.2s;
}

.sc-board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sc-board-card .sc-board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sc-board-card .sc-board-header h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.sc-board-card .sc-board-header .sc-date {
  font-size: 13px;
  color: #64748b;
}

.sc-board-card .sc-board-actions {
  display: flex;
  gap: 8px;
}

.sc-board-card .sc-board-actions a {
  color: #64748b;
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.sc-board-card .sc-board-actions a:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.sc-board-settings {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.sc-board-settings h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.sc-board-settings .sc-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1e293b;
}

.sc-board-settings .sc-setting-row:last-child {
  margin-bottom: 0;
}

.sc-toggle-small .sc-slider-small {
  width: 36px;
  height: 20px;
}

.sc-toggle-small .sc-slider-small:before {
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
}

.sc-toggle-small input:checked+.sc-slider-small:before {
  transform: translateX(16px);
}

.sc-btn-block {
  width: 100%;
  background: #f1f5f9;
  color: #1e293b;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-block.approved {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

.sc-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sc-actions .sc-reply {
  background: none;
  border: none;
  color: #FF6B00;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
}

.sc-actions .sc-reply:hover {
  text-decoration: underline;
}

.sc-toggle,
.sc-toggle-small {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

.sc-toggle input,
.sc-toggle-small input {
  opacity: 0;
  width: 0;
  height: 0;
}

.sc-toggle .sc-slider,
.sc-toggle-small .sc-slider,
.sc-toggle-small .sc-slider-small {
  position: relative;
  width: 44px;
  height: 24px;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 24px;
  display: inline-block;
}

.sc-toggle .sc-slider:before,
.sc-toggle-small .sc-slider:before,
.sc-toggle-small .sc-slider-small:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sc-toggle input:checked+.sc-slider,
.sc-toggle-small input:checked+.sc-slider,
.sc-toggle-small input:checked+.sc-slider-small {
  background-color: #FF6B00;
}

.sc-toggle input:checked+.sc-slider:before,
.sc-toggle-small input:checked+.sc-slider:before,
.sc-toggle-small input:checked+.sc-slider-small:before {
  transform: translateX(20px);
}

.sc-toggle .sc-toggle-label,
.sc-toggle-small .sc-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #1e293b;
}

.sc-boards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.sc-board-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  padding: 25px;
  transition: transform 0.2s;
}

.sc-board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.sc-board-card .sc-board-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.sc-board-card .sc-board-header h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
}

.sc-board-card .sc-board-header .sc-date {
  font-size: 13px;
  color: #64748b;
}

.sc-board-card .sc-board-actions {
  display: flex;
  gap: 8px;
}

.sc-board-card .sc-board-actions a {
  color: #64748b;
  text-decoration: none;
  padding: 4px;
  border-radius: 4px;
  transition: background 0.2s;
}

.sc-board-card .sc-board-actions a:hover {
  background: #f1f5f9;
  color: #1e293b;
}

.sc-board-settings {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
}

.sc-board-settings h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
}

.sc-board-settings .sc-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #1e293b;
}

.sc-board-settings .sc-setting-row:last-child {
  margin-bottom: 0;
}

.sc-toggle-small .sc-slider-small {
  width: 36px;
  height: 20px;
}

.sc-toggle-small .sc-slider-small:before {
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
}

.sc-toggle-small input:checked+.sc-slider-small:before {
  transform: translateX(16px);
}

.sc-btn-block {
  width: 100%;
  background: #f1f5f9;
  color: #1e293b;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-block:hover {
  background: #e2e8f0;
}

.sc-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
}

.sc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

.sc-modal {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.sc-modal-header .sc-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sc-modal-header .sc-modal-close:hover {
  color: #1e293b;
}

.sc-modal-body {
  padding: 25px;
}

.sc-modal-body .sc-modal-recipient {
  margin: 0 0 15px;
  font-size: 14px;
  color: #64748b;
}

.sc-modal-body .sc-modal-recipient strong {
  color: #1e293b;
}

.sc-modal-body .sc-modal-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sc-modal-body .sc-modal-textarea:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.sc-modal-footer {
  padding: 20px 25px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sc-btn-primary {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-primary:hover {
  background: #E65A00;
}

.sc-btn-primary:disabled {
  background: #64748b;
  cursor: not-allowed;
  opacity: 0.7;
}

.sc-btn-secondary {
  background: white;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-secondary:hover {
  background: #f1f5f9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sc-status-selector {
  display: inline-flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
  gap: 2px;
}

.sc-status-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-status-btn:hover {
  color: #1e293b;
}

.sc-status-btn.active {
  background: white;
  color: #FF6B00;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sc-section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e293b;
}

.sc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

.sc-modal {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sc-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
}

.sc-modal-header .sc-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.sc-modal-header .sc-modal-close:hover {
  color: #1e293b;
}

.sc-modal-body {
  padding: 25px;
}

.sc-modal-body .sc-modal-recipient {
  margin: 0 0 15px;
  font-size: 14px;
  color: #64748b;
}

.sc-modal-body .sc-modal-recipient strong {
  color: #1e293b;
}

.sc-modal-body .sc-modal-textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sc-modal-body .sc-modal-textarea:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.sc-modal-footer {
  padding: 20px 25px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.sc-btn-primary {
  background: #FF6B00;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-primary:hover {
  background: #E65A00;
}

.sc-btn-primary:disabled {
  background: #64748b;
  cursor: not-allowed;
  opacity: 0.7;
}

.sc-btn-secondary {
  background: white;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-secondary:hover {
  background: #f1f5f9;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.sc-status-selector {
  display: inline-flex;
  background: #f1f5f9;
  padding: 4px;
  border-radius: 8px;
  gap: 2px;
}

.sc-status-btn {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-status-btn:hover {
  color: #1e293b;
}

.sc-status-btn.active {
  background: white;
  color: #FF6B00;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.sc-status-btn.active.approved {
  color: #16a34a;
}

.sc-status-btn.active.pending {
  color: #d97706;
}

.sc-status-btn:disabled {
  cursor: default;
}

.sc-time-inputs {
  display: flex;
  gap: 10px;
}

.sc-time-inputs .sc-select {
  flex: 1;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
}

.sc-time-inputs .sc-select:focus {
  outline: none;
  border-color: #FF6B00;
}

.sc-file-preview {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.sc-file-preview img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.sc-feed-photos {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  overflow-x: auto;
}

.sc-feed-photos img {
  height: 150px;
  border-radius: 8px;
  object-fit: cover;
}

.sc-feed-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 12px;
  color: #1e293b;
}

.sc-rank-list .sc-rank-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e2e8f0;
  gap: 15px;
}

.sc-rank-list .sc-rank-item.rank-1 {
  background: #fffbeb;
}

.sc-rank-list .sc-rank-item.rank-2 {
  background: #f8fafc;
}

.sc-rank-list .sc-rank-item.rank-3 {
  background: #fff7ed;
}

.sc-rank-list .sc-rank-item .rank-num {
  font-size: 18px;
  font-weight: 800;
  width: 30px;
  color: #64748b;
}

.sc-rank-list .sc-rank-item .rank-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.sc-rank-list .sc-rank-item .rank-name {
  font-weight: 600;
  flex: 1;
}

.sc-rank-list .sc-rank-item .rank-points {
  font-weight: 700;
  color: #FF6B00;
}

.sc-my-rank {
  margin-top: 20px;
  padding: 15px;
  background: #f0f9ff;
  border-radius: 8px;
  text-align: center;
}

.sc-my-rank h4 {
  margin: 0 0 5px;
  font-size: 14px;
  color: #64748b;
}

.sc-my-rank p {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #FF6B00;
}

/* ====================================================
   FRONTEND STYLES (sc_study_challenge / verification_list)
   ==================================================== */

/* --- Layout --- */
.sc-verification-container {
  margin: 0 auto;
  padding: 30px 0;
  display: flex !important;
  gap: 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
}

.sc-verification-container.list-view {
  display: flex !important;
}

@media (max-width: 900px) {

  .sc-verification-container,
  .sc-verification-container.list-view {
    flex-direction: column;
  }

  .sc-sidebar-column {
    width: 100% !important;
  }
}

.sc-main-column {
  flex: 1;
  min-width: 0;
}

.sc-sidebar-column {
  width: 300px;
  min-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Feed Header & Filters --- */
.sc-feed-header {
  margin-bottom: 20px;
}

.sc-feed-header h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 15px;
  color: #1e293b;
}

.sc-feed-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sc-feed-filters button {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1.5px solid #FF6B00;
  background: #fff;
  color: #FF6B00;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-feed-filters button.active,
.sc-feed-filters button:hover {
  background: #FF6B00;
  color: #fff;
}

/* --- Verification List --- */
.sc-verification-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- Feed Item Card --- */
.sc-feed-item {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 24px;
  transition: box-shadow 0.2s;
}

.sc-feed-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* --- Feed Header Row --- */
.sc-feed-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sc-feed-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc-feed-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1f5f9;
}

.sc-feed-meta {
  display: flex;
  flex-direction: column;
}

.sc-feed-name {
  font-weight: 700;
  font-size: 15px;
  color: #1e293b;
}

.sc-feed-time {
  font-size: 13px;
  color: #94a3b8;
}

/* --- Feed Title & Content --- */
.sc-feed-title {
  font-size: 22px;
  font-weight: 700;
  margin: 5px 0 12px;
  color: #1e293b;
  cursor: pointer;
}

.sc-feed-content {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 15px;
  cursor: pointer;
}

/* --- Feed Photo --- */
.sc-feed-main-photo-container {
  margin-bottom: 15px;
  cursor: pointer;
}

.sc-photo-frame {
  border-radius: 12px;
  overflow: hidden;
  background: #f1f5f9;
}

.sc-feed-main-photo {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  max-height: 400px;
}

/* --- Feed Footer & Action Buttons --- */
.sc-feed-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.sc-feed-actions-left {
  display: flex;
  gap: 12px;
}

.sc-feed-actions-right {
  display: flex;
  gap: 8px;
}

.sc-like-btn,
.sc-comment-btn,
.sc-comment-btn-static,
.sc-share-btn,
.sc-delete-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-like-btn:hover,
.sc-comment-btn:hover,
.sc-comment-btn-static:hover,
.sc-share-btn:hover {
  background: #f8fafc;
  color: #FF6B00;
}

.sc-like-btn.liked {
  color: #ef4444;
}

.sc-like-btn.liked .dashicons {
  color: #ef4444;
}

.sc-delete-btn:hover {
  background: #fef2f2;
  color: #ef4444;
}

.sc-like-btn .dashicons,
.sc-comment-btn .dashicons,
.sc-comment-btn-static .dashicons,
.sc-share-btn .dashicons,
.sc-delete-btn .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* --- 3-dot Menu --- */
.sc-feed-menu-wrapper {
  position: relative;
}

.sc-feed-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  color: #94a3b8;
  transition: background 0.2s;
}

.sc-feed-menu-btn:hover {
  background: #f1f5f9;
}

.sc-feed-menu-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 120px;
  z-index: 100;
  overflow: hidden;
}

.sc-feed-menu-dropdown.open {
  display: block;
}

.sc-feed-menu-dropdown button {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-feed-menu-dropdown button:hover {
  background: #f8fafc;
}

/* --- No Posts --- */
.sc-no-posts {
  text-align: center;
  color: #94a3b8;
  padding: 60px 20px;
  font-size: 15px;
}

/* --- Sidebar Widgets --- */
.sc-sidebar-widget {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 24px;
}

.sc-sidebar-widget h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1e293b;
}

.sc-widget-sub {
  font-size: 13px;
  color: #94a3b8;
  margin: 0 0 20px;
}

/* --- Stat Cards --- */
.sc-stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  background: #f8fafc;
}

.sc-stat-card.primary {
  background: #FFF7ED;
  border-color: #FFEDD5;
}

.sc-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #FF6B00;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.sc-stat-icon .dashicons {
  font-size: 22px;
  width: 22px;
  height: 22px;
}

.sc-stat-info {
  display: flex;
  flex-direction: column;
}

.sc-stat-info .label {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 2px;
}

.sc-stat-info .value {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
}

.sc-stat-info .trend {
  font-size: 12px;
  font-weight: 600;
  margin-top: 2px;
}

.sc-stat-info .trend.up {
  color: #16a34a;
}

.sc-stat-info .trend.down {
  color: #ef4444;
}

/* --- Progress List --- */
.sc-progress-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.sc-progress-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
}

.sc-progress-item .icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-progress-item .icon.home {
  background: #dbeafe;
  color: #2563eb;
}

.sc-progress-item .icon.chart {
  background: #dcfce7;
  color: #16a34a;
}

.sc-progress-item .icon .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

.sc-progress-item .label {
  flex: 1;
  font-size: 14px;
  color: #64748b;
}

.sc-progress-item .value {
  font-weight: 700;
  font-size: 16px;
  color: #1e293b;
}

/* --- Report Button --- */
.sc-btn-outline-full {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1.5px solid #FF6B00;
  background: transparent;
  color: #FF6B00;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.sc-btn-outline-full:hover {
  background: #FF6B00;
  color: #fff;
}

/* --- Verification Form --- */
.sc-verification-form {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 24px;
  margin-bottom: 24px;
}

.sc-verification-form h4 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.sc-study-title {
  font-size: 14px;
  color: #FF6B00;
  font-weight: 600;
  margin-bottom: 15px;
}

.sc-verification-form-submit {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.sc-form-group input[type="text"],
.sc-form-group textarea,
.sc-form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.sc-form-group input[type="text"]:focus,
.sc-form-group textarea:focus {
  outline: none;
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* --- File Upload Area --- */
.sc-file-upload-area {
  border: 2px dashed #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.sc-file-upload-area:hover,
.sc-file-upload-area.dragover {
  border-color: #FF6B00;
  background: #FFF7ED;
}

.sc-file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.sc-file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  cursor: pointer;
}

.sc-file-label .dashicons {
  font-size: 32px;
  width: 32px;
  height: 32px;
  color: #FF6B00;
}

.sc-file-preview-area {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.sc-file-preview-area img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}

/* --- Orange Button Override --- */
.sc-btn-orange {
  background: #FF6B00 !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-btn-orange:hover {
  background: #E65A00 !important;
}

/* --- Small Primary Button (Comments) --- */
.sc-btn-primary-sm {
  background: #FF6B00;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-btn-primary-sm:hover {
  background: #E65A00;
}

/* --- Split Modal (Comment Modal) --- */
.sc-modal-split {
  max-width: 900px !important;
  display: flex;
  max-height: 85vh;
}

.sc-modal-left {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  border-right: 1px solid #e2e8f0;
}

.sc-modal-right {
  width: 350px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .sc-modal-split {
    flex-direction: column;
    max-height: 90vh;
  }

  .sc-modal-left {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .sc-modal-right {
    width: 100%;
  }
}

.sc-modal-close-floating {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sc-modal-close-floating:hover {
  background: rgba(0, 0, 0, 0.7);
}

.sc-modal-post-content {
  padding: 0;
}

.sc-modal-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.sc-modal-author {
  font-weight: 700;
  font-size: 15px;
}

.sc-modal-time {
  font-size: 13px;
  color: #94a3b8;
}

.sc-modal-badge {
  background: #FFF7ED;
  color: #FF6B00;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.sc-modal-title {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 10px;
  color: #1e293b;
}

.sc-modal-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sc-modal-image-container {
  margin: 16px 0;
}

.sc-modal-image {
  width: 100%;
  border-radius: 12px;
  max-height: 400px;
  object-fit: cover;
}

/* --- Comment Section (Modal Right) --- */
.sc-modal-header-simple {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

.sc-modal-header-simple h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.sc-modal-body-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.sc-comments-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-comment-item {
  display: flex;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f1f5f9;
}

.sc-comment-item .comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-comment-item .comment-body {
  flex: 1;
}

.sc-comment-item .comment-author {
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
}

.sc-comment-item .comment-text {
  font-size: 14px;
  color: #475569;
  margin-top: 2px;
  line-height: 1.5;
}

.sc-comment-item .comment-time {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
}

.sc-modal-footer-input {
  padding: 16px 24px;
  border-top: 1px solid #e2e8f0;
}

.sc-comment-form-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sc-comment-form-row input[type="text"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
}

.sc-comment-form-row input[type="text"]:focus {
  outline: none;
  border-color: #FF6B00;
}

/* --- Pagination --- */
.sc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.sc-pagination a,
.sc-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.sc-pagination a {
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.sc-pagination a:hover {
  background: #FF6B00;
  color: #fff;
  border-color: #FF6B00;
}

.sc-pagination span.current {
  background: #FF6B00;
  color: #fff;
  border: 1px solid #FF6B00;
}

/* --- Access Denied --- */
.sc-access-denied {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

/* --- Toast Notification --- */
.sc-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  animation: slideUp 0.3s ease-out;
}

/* --- Trigger Cursor --- */
.sc-open-modal-trigger {
  cursor: pointer;
}

/* --- Orange Full-Width Button (스터디 인증하기) --- */
.sc-btn-primary-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: #FF6B00;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.sc-btn-primary-lg:hover {
  background: #E65A00;
}

.sc-btn-primary-lg .dashicons {
  font-size: 18px;
  width: 18px;
  height: 18px;
}

/* --- New Stat Row (Image 5 Style) --- */
.sc-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid #f1f5f9;
}

.sc-stat-row:last-of-type {
  border-bottom: none;
}

.sc-stat-text {
  display: flex;
  flex-direction: column;
}

.sc-stat-text .label {
  font-size: 13px;
  color: #94a3b8;
  margin-bottom: 4px;
}

.sc-stat-text .value {
  font-size: 26px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.sc-stat-text .trend {
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
}

.sc-stat-text .trend.up {
  color: #FF6B00;
}

.sc-stat-emoji {
  font-size: 40px;
  line-height: 1;
}

/* --- Divider --- */
.sc-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 8px 0;
}

/* --- Verification Card --- */
.sc-verification-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  padding: 24px;
  margin-bottom: 24px;
}

.sc-verification-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
}

/* --- 3-dot Menu Active State --- */
.sc-feed-menu-wrapper.active .sc-feed-menu-dropdown {
  display: block;
}

/* --- Comment Styles (No Avatar) --- */
.sc-comment-item {
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
}

.sc-comment-item:last-child {
  border-bottom: none;
}

.sc-comment-body {
  width: 100%;
}

.sc-comment-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.sc-comment-author {
  font-weight: 700;
  font-size: 14px;
  color: #1e293b;
}

.sc-comment-date {
  font-size: 12px;
  color: #94a3b8;
}

.sc-comment-content {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.sc-no-comments {
  text-align: center;
  color: #94a3b8;
  padding: 40px 0;
  font-size: 14px;
}

/* --- Action Bar --- */
.sc-action-bar {
  margin-top: 20px;
}

/* --- Select Inputs --- */
.sc-select {
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
}

.sc-select:focus {
  outline: none;
  border-color: #FF6B00;
}

/* --- Input Icon Wrapper --- */
.sc-input-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sc-input-icon-wrapper .dashicons {
  color: #94a3b8;
}

.sc-input-icon-wrapper select {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
}

/* --- Time Input Row --- */
.sc-time-input-row {
  display: flex;
  gap: 10px;
}

/* --- Edit Modal Photo Preview --- */
.sc-preview-item {
  position: relative;
  display: inline-block;
}

.sc-preview-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.sc-remove-existing-photo {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  line-height: 1;
}

/* --- Pagination Buttons --- */
.sc-pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 30px;
}

.sc-page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
}

.sc-page-btn:hover,
.sc-page-btn.active {
  background: #FF6B00;
  color: #fff;
  border-color: #FF6B00;
}

/* --- Inline Close Button (Modal Header) --- */
.sc-modal-close-inline {
  background: none;
  border: none;
  font-size: 24px;
  color: #94a3b8;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 6px;
  transition: all 0.2s;
}

.sc-modal-close-inline:hover {
  background: #f1f5f9;
  color: #1e293b;
}

/* --- Comment Header with Close Button --- */
.sc-modal-header-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e2e8f0;
}

/* --- 등록 Submit Button Override (Orange Fill) --- */
.sc-btn-primary-sm {
  background: #FF6B00 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.sc-btn-primary-sm:hover {
  background: #E65A00 !important;
}

/* --- Hide any remaining avatar images in modal --- */
.sc-modal-avatar,
.sc-comment-avatar {
  display: none !important;
}

/* --- Modal Split: remove right div wrapper if missing --- */
.sc-modal-split>.sc-modal-header-simple {
  border-left: 1px solid #e2e8f0;
}

/* --- Reposition Floating Close Button inside modal top-right --- */
.sc-modal-close-floating {
  position: absolute !important;
  top: 16px !important;
  right: 16px !important;
  z-index: 10 !important;
  background: #f1f5f9 !important;
  border: none !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  font-size: 20px !important;
  color: #64748b !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  transition: all 0.2s !important;
}

.sc-modal-close-floating:hover {
  background: #e2e8f0 !important;
  color: #1e293b !important;
}

.sc-modal-split {
  position: relative !important;
}

/* --- Inline Close Button Override (Always Visible, right side of 댓글 header) --- */
.sc-modal-header-simple .sc-modal-close-inline {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 20px;
  color: #64748b;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.sc-modal-header-simple .sc-modal-close-inline:hover {
  background: #e2e8f0;
  color: #1e293b;
}

/* ====================================================
   sc_apply_2 — Simple Application Form
   ==================================================== */
.sc-apply2-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
}

.sc-apply2-header {
  text-align: center;
  margin-bottom: 40px;
}

.sc-apply2-header h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  color: #1e293b;
}

.sc-apply2-header p {
  color: #64748b;
  font-size: 15px;
  margin: 0;
}

.sc-apply2-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.sc-apply2-field {
  margin-bottom: 28px;
}

.sc-apply2-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}

.sc-apply2-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #f0f2f5 !important;
  border-radius: 10px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  background: #fafbfc;
}

.sc-apply2-field input:focus {
  border-color: #FF6B00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
  outline: none;
}

.sc-apply2-field input::placeholder {
  color: #cbd5e1;
}

.sc-apply2-submit {
  text-align: center;
  margin-top: 32px;
}

.sc-apply2-submit .sc-btn-primary-lg {
  min-width: 200px;
  background: #FF6B00 !important;
  color: #fff !important;
  border: none !important;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.sc-apply2-submit .sc-btn-primary-lg:hover {
  background: #E65A00 !important;
}


#sc-apply2-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
}

#sc-apply2-message.success {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
}

#sc-apply2-message.error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* --- Copy URL Tooltip --- */
.sc-copy-tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #1e293b;
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  animation: fadeIn 0.2s ease-out;
  pointer-events: none;
  z-index: 10;
}

/* ====================================================
   sc_main_summary — Main Stats Summary
   ==================================================== */
.sc-main-summary {
  width: 100%;
  margin: 20px 0;
  font-family: 'Inter', -apple-system, sans-serif;
}

.sc-stats {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.sc-stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: none;
  border: none;
}

.sc-stat-value {
  margin-bottom: 8px !important;
  color: #1e293b !important;
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  white-space: nowrap !important;
}

.sc-stat-number {
  font-size: 60px !important;
  font-weight: 900 !important;
  color: #ff6b00 !important;
  line-height: 1 !important;
  letter-spacing: -2px !important;
}

.sc-stat-label {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #000 !important;
  margin-left: 6px !important;
}

.sc-stat-desc {
  font-size: 16px !important;
  color: #000 !important;
  font-weight: 600 !important;
  margin-top: 18px !important;
  letter-spacing: -0.5px !important;
}

/* ====================================================
   sc_slide — Horizontal Scrolling Verification Slider
   ==================================================== */
.sc-slider-container {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-family: 'Inter', -apple-system, sans-serif;
}

.sc-slider-container::-webkit-scrollbar {
  display: none;
}

.sc-slider-wrapper {
  display: flex !important;
  gap: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sc-slide-item {
  flex: 0 0 280px !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: none !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sc-slide-item img {
  width: 100% !important;
  height: 210px !important;
  max-height: 210px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.sc-slide-placeholder {
  width: 100% !important;
  height: 210px !important;
  background: #f8fafc !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #cbd5e1 !important;
  font-size: 40px !important;
  border-radius: 12px !important;
}

.sc-slide-desc {
  padding: 12px 2px !important;
  font-size: 13px !important;
  color: #555 !important;
  line-height: 1.5 !important;
  flex-grow: 1 !important;
  margin: 0 !important;
  letter-spacing: -0.3px !important;
  word-break: keep-all !important;
  font-weight: 500 !important;
}

.sc-slide-empty {
  padding: 40px;
  text-align: center;
  color: #64748b;
  width: 100%;
  background: #f8fafc;
  border-radius: 12px;
}