
/* --- app/static/css/pages/index.css --- */
/* Converter: src/app/static/css/pages/index.css v2 */

/* Converter: src/app/static/css/pages/index.css v5 */
/* Section 2: Output Format Selection */

.conversion-options {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 10px;
}

.conversion-block {
    background: linear-gradient(140deg, rgba(36, 63, 83, 0.75), rgba(17, 29, 38, 0.85));
    border-radius: var(--brand-border-radius);
    box-shadow: var(--brand-drop-shadow);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.conversion-block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.conversion-block__title {
    margin: 0;
    font-family: var(--brand-font-title, 'Roboto Mono', monospace);
    font-size: 1.15rem;
    letter-spacing: 0.04em;
}

.conversion-block__count {
    background: rgba(46, 217, 231, 0.18);
    border: 1px solid rgba(46, 217, 231, 0.45);
    border-radius: 999px;
    color: var(--brand-color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    text-transform: uppercase;
}

.file-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(17, 29, 38, 0.45);
    border: 1px solid rgba(46, 217, 231, 0.15);
    border-radius: var(--brand-border-radius);
    padding: 12px 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.file-entry:hover {
    border-color: rgba(46, 217, 231, 0.35);
    transform: translateY(-1px);
}

.file-entry__name {
    font-family: var(--brand-font-title, 'Roboto Mono', monospace);
    font-size: 0.95rem;
    word-break: break-word;
}

.file-entry__status {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-color-highlight);
}

.file-entry__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.file-entry__remove {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 4px;
    border-radius: 50%;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.file-entry__remove:hover,
.file-entry__remove:focus-visible {
    background: rgba(46, 217, 231, 0.18);
    color: var(--brand-color-primary);
    outline: none;
}

.file-entry__remove:focus-visible {
    box-shadow: 0 0 0 2px rgba(46, 217, 231, 0.45);
}

.file-entry--error {
    background: rgba(99, 15, 27, 0.4);
    border-color: rgba(255, 119, 143, 0.5);
}

.file-entry--error .file-entry__status {
    color: #ff778f;
}

.conversion-block__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
}

.conversion-block__label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-color-highlight);
}

.conversion-block__option {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 10px;
    align-items: start;
    font-size: 0.95rem;
    color: #e6f9ff;
}

.conversion-block__option input[type="checkbox"] {
    margin-top: 4px;
    accent-color: var(--brand-color-primary);
}

.conversion-block__option-title {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.conversion-block__option-note {
    display: block;
    font-size: 0.85rem;
    color: rgba(230, 249, 255, 0.8);
}

.target-format-select {
    background: rgba(17, 29, 38, 0.6);
    border: 1px solid rgba(46, 217, 231, 0.45);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    padding: 10px 14px;
    min-width: 160px;
}

.target-format-select:focus {
    outline: none;
    border-color: var(--brand-color-primary);
    box-shadow: 0 0 0 3px rgba(46, 217, 231, 0.25);
}

.conversion-block__warning,
.conversion-block__empty {
    margin: 0;
    font-size: 0.9rem;
    color: var(--brand-color-highlight);
}

.conversion-block__warning {
    color: #ffb347;
}

.conversion-options__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 4px;
}

.convert-all-btn {
    background: var(--brand-color-cta);
    border: none;
    border-radius: 999px;
    box-shadow: var(--brand-drop-shadow);
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 12px 28px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.convert-all-btn:hover {
    background: var(--brand-color-cta-hover);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.convert-all-btn:active {
    transform: translateY(0);
}

.scrape-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: rgba(17, 29, 38, 0.45);
    border: 1px solid rgba(46, 217, 231, 0.2);
    border-radius: var(--brand-border-radius);
    box-shadow: var(--brand-drop-shadow);
}

.scrape-form__label {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--brand-color-highlight);
}

.scrape-form__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scrape-form__input {
    flex: 1 1 260px;
    min-width: 0;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(46, 217, 231, 0.35);
    background: rgba(17, 29, 38, 0.65);
    color: #fff;
    font-size: 1rem;
}

.scrape-form__input:focus {
    outline: none;
    border-color: var(--brand-color-primary);
    box-shadow: 0 0 0 3px rgba(46, 217, 231, 0.25);
}

.scrape-form__submit {
    flex: 0 0 auto;
    padding: 12px 24px;
    border: none;
    border-radius: 999px;
    background: var(--brand-color-cta);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.scrape-form__submit:hover {
    background: var(--brand-color-cta-hover);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.scrape-form__submit:disabled {
    opacity: 0.6;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.scrape-form__status {
    min-height: 1.2em;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.scrape-form__status--success {
    color: #7cffd8;
}

.scrape-form__status--error {
    color: #ff778f;
}

@media (max-width: 768px) {
    .conversion-block {
        padding: 18px;
    }

    .conversion-block__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .file-entry {
        flex-direction: column;
        align-items: flex-start;
    }

    .conversion-block__controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .conversion-options__footer {
        justify-content: center;
    }

    .scrape-form {
        padding: 16px;
    }

    .scrape-form__controls {
        flex-direction: column;
        align-items: stretch;
    }

    .scrape-form__submit {
        width: 100%;
        text-align: center;
    }
}


/* Hide all tab templates (id 0) */
.tab[data-tab-id="0"] {
    display: none !important;
}


/* --- app/static/css/tools.css --- */
/* Website: Transcriber/src/app/static/css/tools.css v1.0 */
/* ====== TOOL SECTION ====== */
.tool-section {
    position: relative;
    margin: 2rem auto;
    padding: var(--brand-spacing, 2rem);
    background-color: var(--brand-bg, rgba(255, 255, 255, 0.02));
    border: 1px solid var(--brand-color-container-foreground-light);
    border-radius: var(--brand-border-radius);
    box-shadow: var(--brand-drop-shadow);
    max-width: 75vw;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow: hidden;
    z-index: 1;
}

.tool-section::before {
    content: attr(data-section);
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 5rem;
    font-weight: 900;
    color: var(--brand-color-container-foreground-light);
    z-index: 0;
    pointer-events: none;
    font-family: var(--brand-font-title);
    opacity: 0.05;
}

.tool-section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--brand-color-container-foreground-light);
    margin-bottom: 1rem;
}

.tool-section-title {
    font-size: 1.5rem;
    font-family: var(--brand-font-title);
    color: var(--brand-color-primary);
    margin-bottom: 0.25rem;
}

.tool-section-description {
    font-size: 1rem;
    color: var(--brand-color-container-foreground-light);
    font-family: var(--brand-font-body);
    opacity: 0.8;
}

.tool-subsection {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tool-subsection + .tool-subsection {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.tool-subsection-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tool-subsection-title {
    margin: 0;
    font-size: 1.1rem;
    font-family: var(--brand-font-title);
    color: var(--brand-color-primary);
}

.tool-subsection-description {
    margin: 0;
    font-size: 0.95rem;
    color: var(--brand-color-container-foreground-light);
    font-family: var(--brand-font-body);
    opacity: 0.85;
}

.tool-subsection-content {
    position: relative;
    z-index: 2;
}


.example-wrapper {
    text-align: center;
    margin-top: 1rem;
}

.example-note {
    color: var(--brand-color-container-foreground-light);
    margin-bottom: 0.5rem;
}

.example-box {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 2px dashed var(--brand-color-primary, #ccc);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.example-box:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.example-arrow {
    font-size: 2rem;
    color: var(--brand-color-primary, #4CAF50);
    margin-top: 0.5rem;
}


/* --- app/static/css/partials/usage-limit-modal.css --- */
/* src/app/static/css/partials/usage-limit-modal.css */

.usage-limit-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.usage-limit-modal.is-visible {
    display: flex;
}

.usage-limit-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.usage-limit-modal__dialog {
    position: relative;
    background: var(--brand-color-modal, #111);
    color: #fff;
    padding: 2.5rem 2rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.45);
    max-width: 26rem;
    width: min(90%, 26rem);
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.usage-limit-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    cursor: pointer;
}

.usage-limit-modal__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.usage-limit-modal__title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.usage-limit-modal__message {
    margin: 0 0 0.75rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.usage-limit-modal__limit,
.usage-limit-modal__reset {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.usage-limit-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.usage-limit-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.usage-limit-modal__button:hover,
.usage-limit-modal__button:focus {
    transform: translateY(-1px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.25);
}

.usage-limit-modal__button:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.usage-limit-modal__button--primary {
    background: var(--brand-color-primary, #ff6b6b);
    color: #111;
}

.usage-limit-modal__button--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .usage-limit-modal__actions {
        flex-direction: row;
    }

    .usage-limit-modal__button {
        flex: 1;
    }
}


/* --- app/static/css/partials/dropzone/structure.css --- */
/* Converter: src/app/static/css/partials/audio-dropzone/structure.css*/

.dropzone {
    color: white;
    background-color: var(--brand-color-container-background);
    border-radius: var(--brand-border-radius);
    padding: 40px;
    margin: 0 auto;
    width: 80%;
    max-width: 600px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--brand-drop-shadow);
    border: 2px dashed var(--brand-border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dropzone.drag-over {
    border-color: var(--brand-color-primary);
    background-color: var(--brand-color-container-background-hover);
}


/* --- app/static/css/partials/dropzone/implementations/dropzone.css --- */
/* Website: Transcriber/src/app/static/css/partials/audio-dropzone/implementations/dropzone.css v1.0 */
/*src/app/static/css/partials/audio-dropzone/implementations/dropzone.css*/
#audio-dropzone {
    background-color: var(--brand-color-container);
    border-radius: var(--brand-border-radius);
    padding: 40px;
    margin: 0 auto;
    width: 80%;
    max-width: 600px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--brand-drop-shadow);
    border: 2px dashed var(--brand-border-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#audio-dropzone:hover {
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

#audio-dropzone.drag-over {
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--brand-color-primary);
    box-shadow: 0 0 16px rgba(46, 217, 231, 0.4);
    transform: scale(1.01);
}

#audio-dropzone .vertical-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#audio-dropzone .upload-icon {
    transition: transform 0.3s ease;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

#audio-dropzone:hover .upload-icon {
    transform: translateY(-5px);
    opacity: 1;
}

#audio-dropzone.drag-over .upload-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--brand-color-primary));
}

#audio-dropzone .drag-and-drop {
    color: var(--brand-color-container-foreground-light);
    font-size: 1.2rem;
    opacity: 0.9;
    font-family: var(--brand-font-body);
    margin: 0;
    line-height: 1.5;
}

#audio-dropzone .browse {
    color: var(--brand-color-primary);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s ease;
}

#audio-dropzone .browse:hover {
    color: var(--brand-color-primary-light);
}

/* File type indicators */
#audio-dropzone::after {
    content: ".mp3, .wav, .m4a";
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--brand-color-container-foreground-light);
    font-family: var(--brand-font-mono, monospace);
}

/* Loading state */
#audio-dropzone.loading {
    pointer-events: none;
    opacity: 0.8;
}

#audio-dropzone.loading .vertical-stack {
    opacity: 0.7;
}

/* Animation pulse for loading state */
@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

#audio-dropzone.loading {
    animation: pulse 2s infinite ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #audio-dropzone {
        width: 90%;
        padding: 30px 20px;
    }

    #audio-dropzone .drag-and-drop {
        font-size: 1rem;
    }

    #audio-dropzone .upload-icon {
        width: 48px;
        height: 48px;
    }
}


/* --- app/static/css/partials/tab/structure.css --- */
/* WAI-Core: src/app/static/css/partials/tab/structure.css v3 */
/* File: src/app/static/css/partials/tab/structure.css */

.tab {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--brand-border-radius);
  overflow: hidden;
  border: 1px solid var(--tabs-border, var(--brand-color-container-foreground-light));
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  background: linear-gradient(135deg, rgba(17, 29, 38, 0.85), rgba(17, 29, 38, 0.65));
  color: var(--tabs-text, var(--brand-color-container-foreground-light));
  box-shadow: var(--brand-drop-shadow);
}

.tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 1;
  background: rgba(36, 63, 83, 0.85);
  color: var(--tabs-text, var(--brand-color-container-foreground-light));
  border-bottom: 1px solid rgba(46, 217, 231, 0.15);
}

.tab-title {
  flex-grow: 1;
  font-weight: bold;
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
}

.tab-clear {
  background: rgba(17, 29, 38, 0.6);
  border: 1px solid var(--tabs-border, var(--brand-color-container-foreground-light));
  font-size: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--tabs-text-muted, rgba(255, 255, 255, 0.65));
  transition: background-color 0.2s ease, color 0.2s ease;
}

.tab-clear:hover {
  background: rgba(46, 217, 231, 0.18);
  color: var(--tabs-text, var(--brand-color-container-foreground-light));
}

.tab-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  background: rgba(17, 29, 38, 0.65);
}

.tab[data-expanded="true"] .tab-body {
  max-height: 500px;
  opacity: 1;
}

.tab-content {
  display: flex;
  width: 100%;
  height: 300px;
  position: relative;
  background: rgba(17, 29, 38, 0.4);
}

.tab-pane {
  padding: 1rem;
  overflow: auto;
  flex: 1;
  color: var(--tabs-text, var(--brand-color-container-foreground-light));
}

.tab-pane-left-content,
.tab-pane-right-content {
  height: 100%;
}

.tab-resize-handle {
  width: 6px;
  min-width: 6px;
  max-width: 6px;
  background: rgba(46, 217, 231, 0.45);
  cursor: col-resize;
  flex-shrink: 0;
  z-index: 1;
}

/* ✅ Animated loading bar for processing state */
.tab-header.loading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, rgba(46, 217, 231, 0.1), var(--brand-color-primary), rgba(46, 217, 231, 0.1));
  background-size: 200% 100%;
  animation: loading-bar-slide 2s linear infinite;
  z-index: 0;
  opacity: 0.75;
  pointer-events: none;
  border-radius: 0 0 4px 4px;
}

@keyframes loading-bar-slide {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


/* --- app/static/css/partials/tab/implementations/tab.css --- */
/* Website: Transcriber/src/app/static/css/partials/tab/implementations/tab.css v1.0 */
/* src/app/static/css/partials/tab/implementations/tab.css */

/* Status Icon Container */
.tab-status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 1rem;
    position: relative;
}

/* ==== Loading (Sound Wave) ==== */
.tab-header.loading {
    background: linear-gradient(135deg, rgba(46, 217, 231, 0.25), rgba(36, 63, 83, 0.9));
    border-left: 4px solid var(--brand-color-primary);
    color: var(--tabs-text, var(--brand-color-container-foreground-light));
}

.tab-header.loading .tab-status-icon {
    gap: 3px;
}

.tab-header.loading .tab-status-icon::before,
.tab-header.loading .tab-status-icon::after,
.tab-header.loading .tab-status-icon div {
    content: '';
    display: block;
    width: 4px;
    background: var(--brand-color-primary);
    animation: waveAnim 1s infinite ease-in-out;
}

.tab-header.loading .tab-status-icon::before {
    height: 16px;
    animation-delay: 0s;
}
.tab-header.loading .tab-status-icon div {
    height: 20px;
    animation-delay: 0.2s;
}
.tab-header.loading .tab-status-icon::after {
    height: 12px;
    animation-delay: 0.4s;
}

@keyframes waveAnim {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.8); }
}

/* ==== Success ==== */
.tab-header.success {
    background: linear-gradient(135deg, rgba(24, 96, 9, 0.3), rgba(36, 63, 83, 0.9));
    border-left: 4px solid var(--brand-color-cta);
    color: var(--tabs-text, var(--brand-color-container-foreground-light));
}

.tab-header.success .tab-status-icon {
    font-size: 1.4rem;
    color: var(--brand-color-cta);
}

.tab-header.success .tab-status-icon::before,
.tab-header.success .tab-status-icon::after,
.tab-header.success .tab-status-icon div {
    display: none;
}

.tab-header.success .tab-status-icon::after {
    content: "✔";
    display: block;
}

/* ==== Failed ==== */
.tab-header.failed {
    background: linear-gradient(135deg, rgba(98, 0, 0, 0.38), rgba(36, 63, 83, 0.9));
    border-left: 4px solid rgba(255, 107, 107, 0.85);
    color: var(--tabs-text, var(--brand-color-container-foreground-light));
}

.tab-header.failed .tab-status-icon {
    font-size: 1.4rem;
    color: rgba(255, 107, 107, 0.95);
}

.tab-header.failed .tab-status-icon::before,
.tab-header.failed .tab-status-icon::after,
.tab-header.failed .tab-status-icon div {
    display: none;
}

.tab-header.failed .tab-status-icon::after {
    content: "❗";
    display: block;
}


/* --- app/static/css/partials/tabs-container/structure.css --- */
/* WAI-Core: src/app/static/css/partials/tabs-container/structure.css v1 */
/* File: src/app/static/css/partials/tabs-container/structure.css */


:root {
  --tabs-surface: rgba(17, 29, 38, 0.75);
  --tabs-surface-alt: rgba(36, 63, 83, 0.68);
  --tabs-border: rgba(46, 217, 231, 0.35);
  --tabs-border-strong: rgba(46, 217, 231, 0.55);
  --tabs-text: rgba(255, 255, 255, 0.9);
  --tabs-text-muted: rgba(255, 255, 255, 0.65);
}

#tabs-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--tabs-surface), rgba(17, 29, 38, 0.92));
  border: 1px solid var(--tabs-border);
  border-radius: var(--brand-border-radius);
  box-shadow: var(--brand-drop-shadow);
  color: var(--tabs-text);
}

.tabs-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: rgba(17, 29, 38, 0.55);
  border: 1px solid var(--tabs-border);
  border-radius: calc(var(--brand-border-radius) - 4px);
  padding: 1rem;
  box-shadow: var(--brand-drop-shadow-2);
}

#tab-search {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--tabs-border-strong);
  border-radius: 6px;
  min-width: 220px;
  background: rgba(36, 63, 83, 0.85);
  color: var(--tabs-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#tab-search::placeholder {
  color: var(--tabs-text-muted);
}

.tab-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tab-filters label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(36, 63, 83, 0.75);
  border: 1px solid var(--tabs-border);
  color: var(--tabs-text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tabs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.tab-card {
  padding: 1rem;
  border: 1px solid var(--tabs-border);
  border-radius: 8px;
  background: var(--tabs-surface-alt);
  color: var(--tabs-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--brand-drop-shadow-2);
}

.tab-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.tabs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.tabs-pagination button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--tabs-border);
  background: rgba(36, 63, 83, 0.85);
  color: var(--tabs-text);
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tabs-pagination button:hover:not(:disabled) {
  background: rgba(46, 217, 231, 0.2);
  box-shadow: 0 0 0 1px rgba(46, 217, 231, 0.3);
}

.tabs-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.no-results {
  font-style: italic;
  color: var(--tabs-text-muted);
  text-align: center;
  grid-column: 1 / -1;
}


/* --- app/static/css/partials/tabs-container/implementations/tabs-container.css --- */
/* Website: Transcriber/src/app/static/css/partials/tabs-container/implementations/tabs-container.css v1.0 */
/*src/app/static/css/partials/tabs-container/implementations/tabs-container.css*/

#tabs-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  max-width: 960px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--tabs-surface), rgba(17, 29, 38, 0.92));
  border: 1px solid var(--tabs-border);
  border-radius: var(--brand-border-radius);
  box-shadow: var(--brand-drop-shadow);
  color: var(--tabs-text);
}

/* Top Controls */
.tabs-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: rgba(17, 29, 38, 0.55);
  border: 1px solid var(--tabs-border);
  border-radius: calc(var(--brand-border-radius) - 4px);
  padding: 1rem;
  box-shadow: var(--brand-drop-shadow-2);
}

#tab-search {
  flex: 1;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--tabs-border-strong);
  border-radius: 6px;
  min-width: 220px;
  background: rgba(36, 63, 83, 0.85);
  color: var(--tabs-text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

#tab-search::placeholder {
  color: var(--tabs-text-muted);
}

.tab-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tab-filters label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(36, 63, 83, 0.75);
  border: 1px solid var(--tabs-border);
  color: var(--tabs-text-muted);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Tab Card Grid */
.tabs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.tab-card {
  padding: 1rem;
  border: 1px solid var(--tabs-border);
  border-radius: 8px;
  background: var(--tabs-surface-alt);
  color: var(--tabs-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--brand-drop-shadow-2);
}

.tab-card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

/* Pagination */
.tabs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.tabs-pagination button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border: 1px solid var(--tabs-border);
  background: rgba(36, 63, 83, 0.85);
  color: var(--tabs-text);
  cursor: pointer;
  border-radius: 999px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tabs-pagination button:hover:not(:disabled) {
  background: rgba(46, 217, 231, 0.2);
  box-shadow: 0 0 0 1px rgba(46, 217, 231, 0.3);
}

.tabs-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.no-results {
  font-style: italic;
  color: var(--tabs-text-muted);
  text-align: center;
  grid-column: 1 / -1;
}
