.tabs {
  border: none;
  background: transparent;
}

.tabs-title {
  margin-right: 0;
}

.tabs-title > a {
  background-color: #2d2d2d;
  color: #e0e0e0;
  border-right: none;
  padding: 0.6rem 1.25rem;
  font-weight: 500;
  border-radius: 0 !important;
}

.tabs-title:last-child > a {
  border-right: 1px solid #404040;
}

.tabs-title > a:hover {
  background-color: #353535;
  color: #ffffff;
}

.tabs-title.is-active > a {
  background-color: #404040;
  color: #ffffff;
  border-bottom: 1px solid #1a1a1a;
}

.tabs-title > a::before,
.tabs-title > a::after {
  display: none !important;
}

.tabs-content {
    border: 1px solid #383838 !important;
    border-top: 1px solid #383838;
}

.reveal {
    background-color: #1a1a1a;
    color: #fefefe;
    border: 1px solid #333;
}

.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6 {
    color: #fefefe;
}

.reveal .close-button {
    color: #fefefe;
}

.reveal .close-button:hover {
    color: #ccc;
}

.reveal-overlay {
    background-color: rgba(0, 0, 0, 0.75);
}

.tabs-panel {
    background-color: #1a1a1a;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background-color: #0a0a0a;
    color: #fefefe;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease-out;
}

.toast.success {
    background-color: #0c9f42;
}

.toast.error {
    background-color: #cc4b37;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}