html:root {
  --brand-color: #f04723;
}

.modal {
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: rgb(5 5 5 / 85%);
  padding: 8rem 0.5rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: auto;
}

.modal .large {
  width: 1024px;
}

.modal .medium {
  width: 764px;
}

.modal__close {
  background-color: #121212;
  color: white;
  border: unset;
  font-size: 20px;
  display: grid;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.modal__close:hover,
.modal__close:focus-visible {
  background-color: var(--brand-color);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.3);
  margin: -1rem -1rem 1rem -1rem;
  border-radius: 8px 8px 0 0;
}

.modal-header h2 {
  color: #ccc;
  margin: 0;
  font-size: 1.5rem;
}

.modal-body {
  padding: 1rem 2rem 2rem 2rem;
  text-align: left;
}

.modal-content {
  background-color: #1a1a1a;
  border-radius: 8px;
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 1rem;
  text-align: center;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1rem 2rem;
  border-top: 1px solid #2d2d2d;
  margin: 1rem -2rem -1rem -2rem;
  background-color: rgba(45, 45, 45, 0.2);
  border-radius: 0 0 8px 8px;
}

@media (max-width: 1024px) {
  .modal .large {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .modal {
    padding: 6rem 0.5rem;
  }

  .modal .medium {
    width: 95%;
  }

  .modal-body {
    padding: 0;
  }

  .modal-header {
    padding: 1rem;
  }
}

.wiki-admin-header {
  background-color: #202020;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wiki-admin-header h1 {
  font-size: 22px;
  margin: 0;
  margin-left: 15px;
  letter-spacing: 0.5px;
}

.logo-placeholder {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.stat-box {
  background-color: #202020;
  padding: 25px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.stat-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--brand-color);
  transform: scaleX(0.3);
  transition: transform 0.3s ease;
}

.stat-box:hover::after {
  transform: scaleX(1);
}

.stat-title {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 15px;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.content-section {
  background-color: #202020;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.spacer {
  height: 20px;
}

.page-title {
  margin-top: 0;
  font-size: 24px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #333;
  padding-bottom: 15px;
}

.section-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-left: 14px;
}

.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: var(--brand-color);
  border-radius: 3px;
}

.section-subtitle {
  color: #888;
  font-size: 14px;
}

.main-container {
  background-color: #181818;
  border-radius: 0 0 10px 10px;
  padding: 30px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.content-section-meta {
  font-size: 14px;
  color: #888;
}

@keyframes pulse {
  0% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.7;
  }
}

.pulse {
  animation: pulse 2s infinite ease-in-out;
}

.contributors-list {
  margin-bottom: 2rem;
}

.contributor-item,
.list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #181818;
  margin-bottom: 0.5rem;
  border-left: 3px solid var(--brand-color);
  transition: all 0.2s ease;
  width: 100%;
}
.list-item-gold {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: #181818;
  margin-bottom: 0.5rem;
  border-left: 3px solid #c59531;
  transition: all 0.2s ease;
  width: 100%;
}

.contributor-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contributor-name {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
}

.contributor-type {
  font-size: 0.875rem;
  color: #888;
}

.contributor-actions {
  display: flex;
  gap: 0.5rem;
}

.add-contributor-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.preview-container {
  border: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.2);
  border-radius: 6px;
  padding: 2rem;
  min-height: 400px;
}

.wiki-contents h1 {
  color: var(--brand-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--brand-color);
}

.wiki-contents h2 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.wiki-contents p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.wiki-contents ul,
.wiki-contents ol {
  margin: 1rem 0;
  padding-left: 2rem;
  color: #fff;
}

.wiki-contents li {
  margin-bottom: 0.5rem;
}

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

.wiki-contents table,
.wiki-contents th,
.wiki-contents td {
  border: 1px solid var(--brand-color);
}

.content-section .container {
  display: flex;
  justify-content: space-between;
}

.content-section .content-link {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

.article-header {
  border: 1px solid #2d2d2d;
  margin-bottom: 2rem;
  border-radius: 8px;
  background-color: rgba(35, 35, 35, 0.4);
}

.article-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  padding: 1.5rem 2rem 0 1.5rem;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  border-top: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.2);
  border-radius: 0 0 6px 6px;
  padding: 0.75rem 2rem 0.75rem 2rem;
}

.article-footer .metadata {
  display: flex;
  gap: 2rem;
  color: #888;
}

.category-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.category-info span {
  position: relative;
  color: #fff;
}

.category-info span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--brand-color);
  border-radius: 50%;
}

.content-wrapper {
  display: flex;
  gap: 2rem;
}

.toc-container {
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  display: flex;
  height: fit-content;
  max-height: calc(100vh - 61px - 6rem);
  position: sticky;
  top: calc(61px + 2rem);
  background-color: rgba(35, 35, 35, 0.4);
  transition: top 0.3s ease;
  z-index: 100;
  flex-shrink: 0;
  overflow: hidden;
}

.toc-header {
  padding: 1.25rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  border-right: 1px solid #2d2d2d;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
  background-color: rgba(45, 45, 45, 0.4);
}

.toc-title {
  color: var(--brand-color);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.toc-title::before,
.toc-title::after {
  content: ">";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  color: var(--brand-color);
  font-size: 0.8rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.toc-title::before {
  top: -1rem;
}

.toc-title::after {
  bottom: -1rem;
}

.toc-content {
  width: 0;
  overflow: hidden;
  transition: width 0.3s ease-out;
  display: flex;
  flex-direction: column;
}

.toc-content.expanded {
  width: 280px;
}

.toc-list {
  list-style: none;
  padding: 1.25rem;
  width: 280px;
  margin: 0;
  overflow-y: auto;
  max-height: calc(100vh - 61px - 8rem);
}

.wiki-contents h1,
.wiki-contents h2 {
  scroll-margin-top: 75px;
}

.toc-list::-webkit-scrollbar {
  width: 6px;
}

.toc-list::-webkit-scrollbar-track {
  background-color: rgb(25, 25, 25);
  border-radius: 3px;
}

.toc-list::-webkit-scrollbar-thumb {
  background-color: rgb(32, 32, 32);
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.toc-list::-webkit-scrollbar-thumb:hover {
  background-color: rgb(45, 45, 45);
}

.toc-item {
  margin-bottom: 0.75rem;
  position: relative;
}

.toc-link {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 0.75rem 1rem;
  transition: all 0.3s;
  border-radius: 6px;
  word-wrap: break-word;
  border: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.2);
}

.toc-link:hover {
  background-color: rgba(45, 45, 45, 0.2);
}

.toc-link:hover {
  color: var(--brand-color);
  border-color: var(--brand-color);
  transform: translateX(4px);
}

.toc-sublist {
  padding-inline-start: 0;
  list-style: none;
  margin-left: 1.5rem;
  margin-top: 0.75rem;
  position: relative;
}

.toc-sublist::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #2d2d2d;
}

.toc-subitem {
  margin-bottom: 0.5rem;
  position: relative;
}

.toc-sublink {
  color: #888;
  text-decoration: none;
  display: block;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s;
  border-radius: 4px;
  word-wrap: break-word;
}

.toc-sublink:hover {
  color: var(--brand-color);
  transform: translateX(4px);
}

.action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  flex-wrap: wrap;
}

.contributor-section {
  margin-bottom: 2rem;
}

.modal-content h3 {
  color: var(--brand-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  border-bottom: 1px solid #2d2d2d;
  padding-bottom: 0.5rem;
}

.submit-button-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.portlet-dark {
  margin-bottom: 2rem;
  border: 1px solid #2d2d2d;
  background-color: rgba(35, 35, 35, 0.4);
  border-radius: 8px;
  padding: 2rem;
}

.portlet-medium {
  margin-bottom: 2rem;
  border: 1px solid #2d2d2d;
  background-color: rgba(35, 35, 35, 0.3);
  border-radius: 8px;
  padding: 1rem;
}

.portlet-gold {
  background-color: rgba(197, 149, 49, 0.1);
  border: 1px solid rgba(197, 149, 49, 0.3);
  border-radius: 6px;
  padding: 1rem;
  margin-top: 1.5rem;
}

.input-section .full-width {
  grid-column: 1 / -1;
}

.input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.input-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 0.75rem;
  border: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.4);
  color: #fff;
  border-radius: 6px;
  font-family: "Ikaros";
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: var(--brand-color);
  outline: none;
  background-color: rgba(45, 45, 45, 0.6);
  box-shadow: 0 0 0 2px rgba(197, 149, 49, 0.2);
}

.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

.flex-toggle-bar {
  display: flex;
  justify-content: space-between;
}

.input-section .section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
p a {
  text-decoration: none;
  color: var(--brand-color);
}
.submit-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem 0;
}

.submit-title {
  color: var(--brand-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 1.5px;
}

.submit-description {
  color: #ccc;
  font-size: 1.1rem;
  margin: 0;
}
.agreement-container {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.agreement-container input[type="checkbox"] {
  margin: 0;
  margin-top: 0px;
  margin-bottom: 0px;
}

.agreement-label {
  margin: 0;
  cursor: pointer;
  padding-top: 2px;
}

.agreement-link {
  color: var(--brand-color);
  text-decoration: none;
}

.agreement-link:hover {
  color: var(--brand-color);
  text-decoration: underline;
}

.section-header {
  color: #fff;
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2d2d2d;
  text-align: center;
  letter-spacing: 1px;
}
.simple-toggle {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 39px;
}

.simple-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.simple-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #444;
  border: 2px solid var(--brand-color);
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.simple-toggle .slider::before {
  content: "";
  position: absolute;
  height: 30px;
  width: 30px;
  left: 4.5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.simple-toggle input:checked + .slider {
  background-color: var(--brand-color);
}

.simple-toggle input:checked + .slider::before {
  transform: translate(33px, -50%);
}

.editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2d2d2d;
}

.editor-header h3 {
  color: var(--brand-color);
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
}

.wiki-submit-button {
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wiki-submit-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 149, 49, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.wiki-submit-button:hover {
  background: linear-gradient(
    135deg,
    rgba(197, 149, 49, 0.2),
    rgba(197, 149, 49, 0.1)
  );
  box-shadow: 0 4px 16px rgba(197, 149, 49, 0.3);
  transform: scale(1.02);
  color: white;
}

.wiki-submit-button:hover::before {
  left: 100%;
}

.submission-info {
  background-color: rgba(45, 45, 45, 0.3);
  border: 1px solid #2d2d2d;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.submit-description {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
}

#edit-mode {
  margin-bottom: 1rem;
}

.contributor-role {
  color: #ccc;
  margin: 0;
  font-size: 0.9rem;
}
input[type="checkbox"] {
  appearance: none;
  width: 24px !important;
  height: 24px !important;
  border: 2px solid var(--brand-color);
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  vertical-align: middle;
}

input[type="checkbox"]:checked {
  background-color: var(--brand-color);
  border-color: var(--brand-color);
}

input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.hidden-page {
  margin: auto;
  width: 100%;
  text-align: center;
  margin-top: 3rem;
}

.wiki-contents img.img-center,
.preview-container img.img-center {
  float: none !important;
  display: block !important;
  margin: 0 auto 15px auto !important;
  height: auto !important;
  max-width: 100% !important;
}

.wiki-contents img.img-left,
.preview-container img.img-left {
  float: left !important;
  margin: 0 15px 15px 0 !important;
  height: auto !important;
  max-width: 100% !important;
}

.wiki-contents img.img-right,
.preview-container img.img-right {
  float: right !important;
  margin: 0 0 15px 15px !important;
  height: auto !important;
  max-width: 100% !important;
}

@media (max-width: 768px) {
  .wiki-contents img.img-center,
  img.img-left,
  img.img-right,
  .preview-container img.img-center,
  img.img-left,
  img.img-right {
    float: none !important;
    display: block !important;
    margin: 0 auto 15px auto !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .toc-container {
    flex-direction: column;
    height: auto;
    position: sticky;
    top: 80px;
    background-color: rgba(35, 35, 35, 0.95);
    z-index: 50;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  .toc-header {
    writing-mode: horizontal-tb;
    transform: none;
    border-right: none;
    border-bottom: 1px solid #2d2d2d;
    padding: 0.75rem 1rem;
    background-color: rgba(45, 45, 45, 0.9);
    font-size: 0.9rem;
  }

  .toc-content {
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: rgba(35, 35, 35, 0.95);
  }

  .toc-content.expanded {
    width: 100%;
    height: auto;
    max-height: 50vh;
  }

  .toc-title::before,
  .toc-title::after {
    transform: none;
    position: static;
    margin: 0 0.5rem;
  }

  .toc-content {
    width: 100%;
    height: 0;
    overflow: hidden;
  }

  .toc-content.expanded {
    width: 100%;
    height: auto;
    max-height: 300px;
  }

  .toc-list {
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contributor-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .add-contributor-actions {
    justify-content: center;
  }

  .input-section .section-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .portlet-dark {
    padding: 1rem;
  }

  .submit-header {
    padding: 1.5rem 0;
  }

  .submit-title {
    font-size: 2rem;
  }

  .editor-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .article-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    padding: 0;
  }

  .article-footer {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .article-footer .metadata {
    gap: 0.25rem;
  }

  .category-info {
    padding: 1rem;
  }

  .article-header {
    font-size: 80%;
  }

  .article-title-wrapper {
    text-align: center;
  }
}

/* Resources Layout Classes */
.resources-container {
  background-color: rgba(35, 35, 35, 0.4);
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.resource-links {
  display: flex;
  flex-direction: column;
}

.resource-links a {
  color: var(--brand-color);
  text-decoration: none;
}

.resource-links a:hover {
  text-decoration: underline;
}

.resource-links ul {
  margin-top: 0px;
}

.resources-header {
  background-color: #202020;
  border-bottom: 2px solid var(--brand-color);
  padding: 14px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  user-select: none;
}

/* .resources-header:hover {
  background-color: rgba(240, 71, 35, 0.1);
}

.resources-header.active {
  background-color: rgba(240, 71, 35, 0.05);
} */

.resources-row a {
  color: var(--brand-color);
  text-decoration: none;
}

.resources-row a:hover {
  text-decoration: underline;
}

.resources-title {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: bold;
  font-family: "Ikaros";
  text-transform: uppercase;
}

.resources-toggle-icon {
  color: var(--brand-color);
  font-size: 12px;
  transition: transform 0.2s ease;
}

.resources-header.active .resources-toggle-icon {
  transform: rotate(180deg);
}

.resources-content {
  padding: 1.5rem;
  display: none;
}

.resources-content.active {
  display: flex;
  justify-content: space-evenly;
}

.resources-row {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.resources-group {
  flex: 1;
  min-width: 200px;
}

.resources-label {
  display: block;
  color: var(--brand-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: "Ikaros";
}

.resources-button-group {
  flex-shrink: 0;
}

.resources-select {
  padding: 0.75rem;
  border: 1px solid #2d2d2d;
  background-color: rgba(45, 45, 45, 0.4);
  color: #fff;
  border-radius: 4px;
  font-family: "Ikaros";
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  width: 100%;
}

.resources-select:focus {
  border-color: var(--brand-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(240, 71, 35, 0.1);
}

/* Responsive adjustments for resources */
@media (max-width: 768px) {
  .resources-row {
    flex-direction: column;
    gap: 1rem;
  }

  .resources-group {
    min-width: unset;
  }

  .resources-button-group {
    align-self: stretch;
  }
}
