/* Bonus Hunt Specific Styles */

.main-content {
    padding-top: 5rem;
    min-height: calc(100vh - 100px);
}

.page-title {
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0 2rem;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.8rem 2rem;
    background: rgba(26, 31, 53, 0.5);
    border: 2px solid rgba(123, 104, 238, 0.3);
    border-radius: 8px;
    color: var(--gray-text);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--primary-purple);
    color: var(--light-text);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-color: transparent;
    color: white;
}

.tab-content {
    display: none;
}

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

.card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(123, 104, 238, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(123, 104, 238, 0.15);
}

/* Hunt Balance Panel */
.hunt-balance-panel h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.balance-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    align-items: end;
}

.stat-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 14, 26, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(123, 104, 238, 0.15);
}

/* Hunt Status Panel */
.hunt-status-panel {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.05), rgba(123, 104, 238, 0.05));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.status-header h2 {
    margin: 0;
    font-size: 1.8rem;
}

.mode-badge {
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.mode-badge.collecting {
    background: linear-gradient(135deg, #1E90FF, #00CED1);
    color: white;
}

.mode-badge.opening {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(10, 14, 26, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(123, 104, 238, 0.15);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-value.profit {
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-value.loss {
    background: linear-gradient(135deg, #FF4545, #CC0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
}

/* Control Panel */
.control-panel h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.control-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-danger {
    background: linear-gradient(135deg, #FF4545, #CC0000);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 69, 0.4);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* Add Bonus Form */
.add-bonus-form {
    animation: slideDown 0.3s ease;
}

.add-bonus-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-weight: 500;
}

/* Autocomplete */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.98);
    border: 1px solid rgba(123, 104, 238, 0.3);
    border-radius: 8px;
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.autocomplete-list.hidden {
    display: none;
}

.autocomplete-item {
    padding: 0.8rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.1);
}

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

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(123, 104, 238, 0.2);
}

.autocomplete-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

.autocomplete-item-details {
    flex: 1;
}

.autocomplete-item-name {
    font-weight: 600;
    color: var(--light-text);
    font-size: 0.95rem;
}

.autocomplete-item-provider {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 0.2rem;
}

.autocomplete-item-count {
    font-size: 0.75rem;
    color: var(--gray-text);
    padding: 0.2rem 0.5rem;
    background: rgba(123, 104, 238, 0.2);
    border-radius: 4px;
}

.form-group input {
    padding: 0.8rem;
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(123, 104, 238, 0.2);
    border-radius: 8px;
    color: var(--light-text);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(123, 104, 238, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.8rem 0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-purple);
}

.checkbox-label span {
    color: var(--light-text);
    font-weight: 500;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hidden {
    display: none !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bonus List */
.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.list-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(123, 104, 238, 0.3);
    border-radius: 6px;
    color: var(--gray-text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--primary-purple);
    color: var(--light-text);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-color: transparent;
    color: white;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(123, 104, 238, 0.15);
}

.bonus-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.08);
    transition: background 0.2s ease;
    gap: 0.8rem;
}

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

.bonus-item:hover {
    background: rgba(123, 104, 238, 0.05);
}

.bonus-item.opened {
    opacity: 0.5;
}

.bonus-item.super {
    background: rgba(255, 215, 0, 0.03);
}

.bonus-number {
    min-width: 35px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-text);
    text-align: left;
}

.bonus-item.super .bonus-number::before {
    content: "▶ ";
    color: #FFD700;
    margin-right: 0.3rem;
}

.bonus-image {
    width: 64px;
    height: 86px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

.bonus-item.super .bonus-image {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.bonus-details {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-game {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
    text-transform: uppercase;
    max-width: 300px;
}

.bonus-item.super .bonus-game {
    color: #FFD700;
}

.bonus-item.super .bonus-game::after {
    content: " (SUPER)";
    font-weight: 600;
}

.bonus-provider {
    display: none;
}

.bonus-meta {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
    margin-left: auto;
}

.bonus-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.bonus-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
}

.result-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-invested {
    font-size: 0.9rem;
    color: var(--gray-text);
}

.result-won {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-text);
}

.result-won.loss {
    color: #FF4545;
}

.bonus-status {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bonus-status.pending {
    background: rgba(30, 144, 255, 0.2);
    color: #1E90FF;
}

.bonus-status.opened {
    background: rgba(0, 255, 136, 0.2);
    color: #00FF88;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--gray-text);
}

.empty-state p {
    font-size: 1.1rem;
}

/* Opening Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(123, 104, 238, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.2);
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
}

.progress-info {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--gray-text);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.modal-close-btn:hover {
    background: rgba(255, 77, 77, 0.1);
    color: #ff4d4d;
    transform: scale(1.1);
}

.current-bonus-display {
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(123, 104, 238, 0.1));
    border: 2px solid rgba(123, 104, 238, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.current-bonus-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.current-bonus-info p {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.opening-result-form {
    margin-bottom: 2rem;
}

.remaining-bonuses h4 {
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: 1.1rem;
}

.remaining-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.remaining-item {
    background: rgba(30, 144, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

/* Activity Log */
.activity-panel h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.activity-log {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-log::-webkit-scrollbar {
    width: 8px;
}

.activity-log::-webkit-scrollbar-track {
    background: rgba(10, 14, 26, 0.5);
    border-radius: 4px;
}

.activity-log::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    border-radius: 4px;
}

.log-entry {
    padding: 0.8rem;
    background: rgba(10, 14, 26, 0.5);
    border-radius: 6px;
    border-left: 3px solid transparent;
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.log-entry.system {
    border-left-color: var(--primary-blue);
}

.log-entry.success {
    border-left-color: #00FF88;
}

.log-entry.warning {
    border-left-color: #F7931E;
}

.log-entry.error {
    border-left-color: #FF4545;
}

.log-time {
    color: var(--gray-text);
    font-family: 'Courier New', monospace;
    white-space: nowrap;
}

.log-message {
    color: var(--light-text);
}

/* History Section */
.history-panel h2 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.history-item {
    background: rgba(10, 14, 26, 0.5);
    border: 1px solid rgba(123, 104, 238, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.history-item:hover {
    border-color: rgba(123, 104, 238, 0.3);
    transform: translateY(-2px);
}

.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(123, 104, 238, 0.1);
}

.history-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-text);
}

.history-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.history-stat {
    text-align: center;
}

.history-stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-stat-value.profit {
    background: linear-gradient(135deg, #00FF88, #00CC6A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-stat-value.loss {
    background: linear-gradient(135deg, #FF4545, #CC0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.history-stat-label {
    font-size: 0.85rem;
    color: var(--gray-text);
    margin-top: 0.3rem;
}

.history-bonuses {
    margin-top: 1rem;
}

.history-bonuses-header {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 0.5rem;
}

.history-bonus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.history-bonus-chip {
    background: rgba(30, 144, 255, 0.2);
    border: 1px solid rgba(30, 144, 255, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.history-bonus-chip.super {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

.delete-history-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 69, 69, 0.2);
    border: 1px solid rgba(255, 69, 69, 0.3);
    border-radius: 6px;
    color: #FF4545;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.delete-history-btn:hover {
    background: rgba(255, 69, 69, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .control-actions {
        flex-direction: column;
    }

    .bonus-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .bonus-number {
        min-width: 30px;
        font-size: 0.85rem;
    }

    .bonus-game {
        font-size: 0.85rem;
    }

    .bonus-meta {
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 1.5rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .progress-info {
        font-size: 1.2rem;
    }
}

/* Admin-only elements - hidden by default */
.admin-only {
    display: none;
}

/* Show admin buttons when user is admin */
body.is-admin .tab-btn.admin-only {
    display: inline-block;
}

/* Tab content for admin - hidden by default even for admins */
body.is-admin .tab-content.admin-only {
    display: none;
}

/* Only show active admin tab content */
body.is-admin .tab-content.admin-only.active {
    display: block;
}

/* Admin Panel Styles */
.admin-panel {
    margin-top: 2rem;
}

.admin-controls {
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.admin-search-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(10, 14, 26, 0.8);
    border: 2px solid rgba(123, 104, 238, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
}

.admin-search-input:focus {
    outline: none;
    border-color: rgba(30, 144, 255, 0.8);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.3);
}

.games-list {
    display: grid;
    gap: 1rem;
    max-height: 600px;
    overflow-y: auto;
}

.game-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 26, 0.6);
    border: 2px solid rgba(123, 104, 238, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.game-item:hover {
    border-color: rgba(123, 104, 238, 0.6);
    background: rgba(10, 14, 26, 0.8);
}

.game-item img {
    width: 64px;
    height: 86px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(123, 104, 238, 0.3);
}

.game-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-item-name {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.game-item-provider {
    font-size: 14px;
    color: #a8b2d1;
}

.game-item-stats {
    display: flex;
    gap: 1rem;
    font-size: 12px;
    color: #666;
}

.game-item-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.btn-delete {
    padding: 8px 16px;
    background: rgba(255, 69, 69, 0.2);
    border: 2px solid rgba(255, 69, 69, 0.6);
    border-radius: 6px;
    color: #FF4545;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: rgba(255, 69, 69, 0.3);
    border-color: #FF4545;
    color: white;
}

/* Thumbnail Extractor Styles */
.thumb-extractor {
    margin-top: 2rem;
}

.subtitle {
    color: #a8b2d1;
    margin-bottom: 2rem;
    font-size: 14px;
}

.extractor-input {
    margin-bottom: 2rem;
}

.extractor-input-field {
    width: 100%;
    padding: 12px 15px;
    background: rgba(10, 14, 26, 0.8);
    border: 2px solid rgba(123, 104, 238, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 14px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.extractor-input-field:focus {
    outline: none;
    border-color: rgba(30, 144, 255, 0.8);
    box-shadow: 0 0 15px rgba(30, 144, 255, 0.3);
}

.extractor-error {
    background: rgba(255, 69, 69, 0.1);
    border: 2px solid rgba(255, 69, 69, 0.6);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    color: #FF4545;
}

.extractor-result {
    background: rgba(10, 14, 26, 0.6);
    border: 2px solid rgba(30, 144, 255, 0.4);
    border-radius: 12px;
    padding: 2rem;
}

.extractor-result h3 {
    font-size: 20px;
    margin-bottom: 1.5rem;
    color: #1E90FF;
}

.extractor-preview {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(26, 31, 53, 0.6);
    border-radius: 10px;
}

.extractor-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.extractor-preview img {
    width: 168px;
    height: 227px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(123, 104, 238, 0.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.extractor-actions {
    display: flex;
    gap: 1rem;
}

.extractor-actions .btn {
    flex: 1;
}
