/* Import Modern Web Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-dark: #090d16;
    --bg-card: rgba(20, 27, 45, 0.7);
    --bg-card-hover: rgba(28, 38, 62, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(99, 102, 241, 0.4);
    
    --color-text: #f8fafc;
    --color-text-muted: #94a3b8;
    
    --primary-grad: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --secondary-grad: linear-gradient(135deg, #14b8a6 0%, #06b6d4 100%);
    --danger-grad: linear-gradient(135deg, #ef4444 0%, #f43f5e 100%);
    
    --color-primary: #6366f1;
    --color-secondary: #06b6d4;
    --color-success: #10b981;
    --color-danger: #ef4444;
    
    --glow-shadow: 0 0 20px rgba(99, 102, 241, 0.25);
    --glow-shadow-sec: 0 0 20px rgba(6, 182, 212, 0.25);
    
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.12) 0%, transparent 45%);
    background-attachment: fixed;
}

/* Header Design */
header {
    background: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-grad);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-shadow);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ffffff, #c7d2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-badge {
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    font-size: 0.75rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--color-text);
}

.btn-premium {
    background: var(--secondary-grad);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--glow-shadow-sec);
    transition: all var(--transition-speed);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.4);
}

/* Main Container Layout */
main {
    flex-grow: 1;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-title svg {
    color: var(--color-primary);
}

/* Script Column Controls */
.script-controls-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 180px;
}

.control-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
}

.select-custom {
    background: #0f1626;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--color-text);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    outline: none;
    transition: border-color var(--transition-speed);
}

.select-custom:focus {
    border-color: var(--color-primary);
}

/* Textarea wrapper & counting */
.textarea-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.textarea-custom {
    width: 100%;
    height: 320px;
    background: #0b0f19;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    color: var(--color-text);
    padding: 1.25rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    resize: none;
    outline: none;
    transition: all var(--transition-speed);
}

.textarea-custom:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

.stats-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 22, 38, 0.5);
    border: 1px solid var(--border-color);
    border-top: none;
    margin-top: -1.25rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem 1.25rem;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.stats-item {
    display: flex;
    gap: 0.35rem;
    align-items: center;
}

.stats-item strong {
    color: var(--color-text);
}

/* Button Group Style */
.button-row {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn:not(.btn-sm):not(.speed-btn) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--primary-grad);
    color: white;
    box-shadow: var(--glow-shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.45);
}

.btn-primary:disabled {
    background: var(--color-text-muted);
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
    opacity: 0.6;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--color-text);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-text-muted);
}

/* Action Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Template Suggestions Box */
.templates-container {
    margin-top: 1.5rem;
}

.templates-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.template-tag {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.template-tag:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--color-primary);
    color: #c7d2fe;
}

/* Right Column Panels */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Player Card Container */
.player-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.player-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-text-muted);
    border: 2px dashed rgba(255,255,255,0.05);
    border-radius: 16px;
    gap: 1rem;
}

.player-empty-state svg {
    width: 48px;
    height: 48px;
    color: var(--color-text-muted);
    opacity: 0.4;
}

/* Active Player UI */
.player-active-ui {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
}

.audio-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.75rem;
}

.audio-title-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.audio-meta-pills {
    display: flex;
    gap: 0.5rem;
}

.pill {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    border: 1px solid var(--border-color);
}

.pill-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* Waveform Canvas Style */
.waveform-container {
    background: #070a12;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    height: 100px;
    overflow: hidden;
}

.waveform-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.waveform-time {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-size: 0.75rem;
    font-family: monospace;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    color: #fff;
    pointer-events: none;
}

/* Audio Player Controls */
.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.play-pause-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: var(--glow-shadow);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.play-pause-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.4);
}

.play-pause-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

/* Custom Progress Bar */
.progress-container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.slider-timeline {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #1e293b;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
}

.slider-timeline::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 5px var(--color-primary);
    cursor: pointer;
    transition: transform 0.1s;
}

.slider-timeline::-webkit-slider-thumb:hover {
    transform: scale(1.3);
}

/* Player options (Speed, etc.) */
.player-options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.playback-speed-selector {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.speed-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--color-text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.speed-btn.active {
    background: rgba(6, 182, 212, 0.15);
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

/* Download Main Button */
.btn-download-main {
    background: var(--secondary-grad);
    color: #0b0f19;
    font-family: var(--font-heading);
    font-weight: 700;
    box-shadow: var(--glow-shadow-sec);
    width: 100%;
    margin-top: 0.5rem;
}

.btn-download-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

/* History Card & Item styling */
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.history-header h3 {
    margin: 0;
}

/* btn-clear-history styling removed to let Bootstrap 5 manage the button outline-danger styling natively */

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

/* Scrollbar styling for history and text area */
.history-list::-webkit-scrollbar,
.textarea-custom::-webkit-scrollbar {
    width: 6px;
}

.history-list::-webkit-scrollbar-track,
.textarea-custom::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 4px;
}

.history-list::-webkit-scrollbar-thumb,
.textarea-custom::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.history-list::-webkit-scrollbar-thumb:hover,
.textarea-custom::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.history-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    border: 1px dashed rgba(255,255,255,0.05);
    border-radius: 12px;
    text-align: center;
}

.history-empty svg {
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.history-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all var(--transition-speed);
}

.history-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.history-item-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0; /* allows text truncation */
    flex-grow: 1;
}

.history-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.history-item-details {
    min-width: 0;
}

.history-item-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.15rem;
}

.history-item-meta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.72rem;
    color: var(--color-text-muted);
}

.history-item-actions {
    display: flex;
    gap: 0.35rem;
    flex-shrink: 0;
}

.btn-action-small {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: rgba(255,255,255,0.02);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-action-small:hover {
    color: var(--color-text);
    border-color: var(--color-text-muted);
    background: rgba(255,255,255,0.06);
}

.btn-action-small.btn-play-small:hover {
    color: var(--color-primary);
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.1);
}

.btn-action-small.btn-delete-small:hover {
    color: var(--color-danger);
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.1);
}

/* VO tips section */
.tips-section {
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.tips-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #a5b4fc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-list {
    list-style-type: none;
}

.tips-list li {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1.1rem;
}

.tips-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Footer Design */
footer {
    border-top: 1px solid var(--border-color);
    background: rgba(9, 13, 22, 0.9);
    padding: 2rem 0;
    margin-top: auto;
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

footer p {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Advanced Tuning Settings Panel */
.advanced-settings-panel {
    background: rgba(15, 22, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 0.25rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-speed);
}

.advanced-details {
    width: 100%;
}

.advanced-summary {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a5b4fc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    outline: none;
}

.advanced-summary::-webkit-details-marker {
    display: none;
}

.summary-hint {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.tuning-control {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tuning-label-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

.tuning-label-row span {
    color: var(--color-secondary);
    font-weight: 700;
    font-family: monospace;
}

.slider-tuning {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #0f172a;
    border-radius: 2px;
    outline: none;
}

.slider-tuning::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5);
    transition: transform var(--transition-speed);
}

.slider-tuning::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

/* Neural Pause Quick Tags */
.template-tag.neural-tag {
    border-color: rgba(6, 182, 212, 0.25);
    background: rgba(6, 182, 212, 0.03);
}

.template-tag.neural-tag:hover {
    border-color: var(--color-secondary);
    background: rgba(6, 182, 212, 0.12);
    color: #e0f2fe;
}

/* Responsive Overrides */
@media (max-width: 640px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    main {
        padding: 1.25rem 1rem;
    }
    
    .button-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .glass-card {
        padding: 1.25rem;
    }
    
    .advanced-grid {
        grid-template-columns: 1fr;
    }
}

/* Bootstrap 5 Form Overrides for Premium Cyberpunk Dark Mode */
.form-select.select-custom,
.form-control.textarea-custom {
    background-color: #0b0f19 !important;
    color: var(--color-text) !important;
    border: 1px solid var(--border-color) !important;
}

.form-select.select-custom:focus,
.form-control.textarea-custom:focus {
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.25) !important;
    background-color: #0f1626 !important;
}

.form-select.select-custom {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2394a3b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 12px 12px !important;
    border-radius: 12px !important;
    padding: 0.75rem 2.5rem 0.75rem 1rem !important;
    appearance: none !important;
    -webkit-appearance: none !important;
}

.form-select.select-custom option {
    background-color: #0b0f19 !important;
    color: #f8fafc !important;
}

.form-control.textarea-custom {
    border-radius: 16px !important;
    padding: 1.25rem !important;
}

.form-range.slider-tuning::-webkit-slider-runnable-track {
    background: #0f172a !important;
    height: 4px;
    border-radius: 2px;
}

.form-range.slider-tuning::-webkit-slider-thumb {
    background: var(--color-secondary) !important;
    width: 12px;
    height: 12px;
    margin-top: -4px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(6, 182, 212, 0.5) !important;
}

.form-range.slider-tuning:focus::-webkit-slider-thumb {
    box-shadow: 0 0 8px rgba(6, 182, 212, 0.8) !important;
}

/* Ensure high contrast readability for text on dark backgrounds */
.text-muted {
    color: #94a3b8 !important;
}

.text-secondary {
    color: #94a3b8 !important;
}

.border-secondary {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Input placeholder contrast */
.form-control::placeholder,
.textarea-custom::placeholder {
    color: rgba(148, 163, 184, 0.5) !important;
}

/* Standard Bootstrap Range Slider Track Background Override */
.form-range::-webkit-slider-runnable-track {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.form-range::-moz-range-track {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

