/* Coinlist Table Enhanced Styles */

/* Gradient Background Option 1 - Crypto Dark Theme */
.table.coinlist {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: none;
    margin-top: 20px;
    margin-bottom: 30px;
}

.table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.4);
    color: #e1e1e1;
    padding: 15px 12px;
    font-weight: 600;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.table.coinlist tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.table.coinlist td {
    padding: 15px 9px;
    color: #e1e1e1;
}

.table.coinlist .tbl-currency {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1em;
}

.table.coinlist .tbl-coin-abbrev {
    color: #a0a0a0;
}

.table.coinlist .tbl-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.table.coinlist tr:hover .tbl-icon {
    transform: scale(1.15);
}

/* API Provider Styling has been removed */

/* Price Change Animation */
@keyframes priceUp {
    0% { background-color: rgba(46, 204, 113, 0); }
    50% { background-color: rgba(46, 204, 113, 0.3); }
    100% { background-color: rgba(46, 204, 113, 0); }
}

@keyframes priceDown {
    0% { background-color: rgba(231, 76, 60, 0); }
    50% { background-color: rgba(231, 76, 60, 0.3); }
    100% { background-color: rgba(231, 76, 60, 0); }
}

.highlight-up {
    animation: priceUp 1s ease;
}

.highlight-down {
    animation: priceDown 1s ease;
}

/* Button Styling */
.table.coinlist .btn {
    border-radius: 20px;
    /* padding değeri kaldırıldı */
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.table.coinlist .btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.table.coinlist .btn-success:hover {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
}

.table.coinlist .btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.table.coinlist .btn-danger:hover {
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .table.coinlist {
        border-radius: 10px;
    }

    .table.coinlist thead th {
        padding: 10px 5px;
        font-size: 0.75rem;
    }

    .table.coinlist td {
        padding: 10px 5px;
    }

    .table.coinlist .tbl-currency {
        font-size: 0.9em;
    }

    .table.coinlist .btn {
        /* padding değeri kaldırıldı */
        font-size: 0.7rem;
    }
}

/* Alternative Theme - Neon Crypto */
.neon-theme .table.coinlist {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(103, 58, 183, 0.3);
}

.neon-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-bottom: 2px solid rgba(103, 58, 183, 0.5);
}

.neon-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(103, 58, 183, 0.2);
}

.neon-theme .table.coinlist tbody tr:hover {
    background-color: rgba(103, 58, 183, 0.1);
    box-shadow: 0 0 15px rgba(103, 58, 183, 0.3);
}

.neon-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(103, 58, 183, 0.5);
}

.neon-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
    box-shadow: 0 4px 10px rgba(0, 201, 255, 0.3);
    color: #000;
}

.neon-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    box-shadow: 0 4px 10px rgba(255, 65, 108, 0.3);
}

/* Alternative Theme - Elegant Dark */
.elegant-theme .table.coinlist {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.elegant-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.2);
    color: #ecf0f1;
    border-bottom: 2px solid rgba(236, 240, 241, 0.1);
}

.elegant-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(236, 240, 241, 0.05);
}

.elegant-theme .table.coinlist tbody tr:hover {
    background-color: rgba(236, 240, 241, 0.05);
}

.elegant-theme .table.coinlist .tbl-currency {
    color: #ecf0f1;
}

.elegant-theme .table.coinlist .tbl-coin-abbrev {
    color: #bdc3c7;
}

.elegant-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.elegant-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Alternative Theme - Futuristic */
.futuristic-theme .table.coinlist {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
    box-shadow: 0 10px 30px rgba(0, 78, 146, 0.5);
    border: 1px solid rgba(0, 225, 255, 0.1);
}

.futuristic-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.4);
    color: #00e1ff;
    border-bottom: 2px solid rgba(0, 225, 255, 0.2);
    text-shadow: 0 0 5px rgba(0, 225, 255, 0.5);
}

.futuristic-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(0, 225, 255, 0.1);
}

.futuristic-theme .table.coinlist tbody tr:hover {
    background-color: rgba(0, 225, 255, 0.05);
    box-shadow: 0 0 15px rgba(0, 225, 255, 0.2);
}

.futuristic-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

.futuristic-theme .table.coinlist .tbl-coin-abbrev {
    color: #00e1ff;
}

.futuristic-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.5);
}

.futuristic-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #00e1ff, #00b4d8);
    box-shadow: 0 0 10px rgba(0, 225, 255, 0.5);
}

.futuristic-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

/* Razewin Brand Themes */

/* Razewin Red Theme */
.razewin-red-theme .table.coinlist {
    background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #800000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 0, 0.2);
}

.razewin-red-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-bottom: 2px solid rgba(255, 0, 0, 0.3);
}

.razewin-red-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
}

.razewin-red-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 0, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.razewin-red-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.razewin-red-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #c00000, #800000);
    box-shadow: 0 4px 10px rgba(192, 0, 0, 0.3);
}

.razewin-red-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff0000, #c00000);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* Razewin Gold Theme */
.razewin-gold-theme .table.coinlist {
    background: linear-gradient(135deg, #1a1000 0%, #302000 50%, #503000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.2);
}

.razewin-gold-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffd700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.razewin-gold-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.razewin-gold-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
}

.razewin-gold-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.3);
}

.razewin-gold-theme .table.coinlist .tbl-coin-abbrev {
    color: #ffd700;
}

.razewin-gold-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.razewin-gold-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #ffd700, #b8860b);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    color: #000;
}

.razewin-gold-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3);
    color: #fff;
}

/* Razewin Dark Gold Theme */
.razewin-dark-gold-theme .table.coinlist {
    background: linear-gradient(135deg, #000000 0%, #1a1000 50%, #302000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(184, 134, 11, 0.2);
    border: 1px solid rgba(184, 134, 11, 0.1);
}

.razewin-dark-gold-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.7);
    color: #b8860b;
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
    text-shadow: 0 0 5px rgba(184, 134, 11, 0.3);
}

.razewin-dark-gold-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.razewin-dark-gold-theme .table.coinlist tbody tr:hover {
    background-color: rgba(184, 134, 11, 0.1);
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

.razewin-dark-gold-theme .table.coinlist .tbl-currency {
    color: #ffffff;
}

.razewin-dark-gold-theme .table.coinlist .tbl-coin-abbrev {
    color: #b8860b;
}

.razewin-dark-gold-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
}

.razewin-dark-gold-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #b8860b, #8b6914);
    box-shadow: 0 4px 10px rgba(184, 134, 11, 0.3);
}

.razewin-dark-gold-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #8b6914, #5c4709);
    box-shadow: 0 4px 10px rgba(139, 105, 20, 0.3);
}

/* Emerald Green Theme */
.emerald-theme .table.coinlist {
    background: linear-gradient(135deg, #0a2e1f 0%, #145a3c 50%, #1e8759 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.1);
}

.emerald-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #2ecc71;
    border-bottom: 2px solid rgba(46, 204, 113, 0.3);
    text-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

.emerald-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(46, 204, 113, 0.1);
}

.emerald-theme .table.coinlist tbody tr:hover {
    background-color: rgba(46, 204, 113, 0.1);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.emerald-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(46, 204, 113, 0.3);
}

.emerald-theme .table.coinlist .tbl-coin-abbrev {
    color: #2ecc71;
}

.emerald-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}

.emerald-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.emerald-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

/* Forest Green Theme */
.forest-theme .table.coinlist {
    background: linear-gradient(135deg, #0b2e0b 0%, #1b5e1b 50%, #2d8c2d 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(34, 139, 34, 0.2);
    border: 1px solid rgba(34, 139, 34, 0.1);
}

.forest-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #3cb371;
    border-bottom: 2px solid rgba(34, 139, 34, 0.3);
    text-shadow: 0 0 5px rgba(34, 139, 34, 0.3);
}

.forest-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(34, 139, 34, 0.1);
}

.forest-theme .table.coinlist tbody tr:hover {
    background-color: rgba(34, 139, 34, 0.1);
    box-shadow: 0 0 15px rgba(34, 139, 34, 0.2);
}

.forest-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(34, 139, 34, 0.3);
}

.forest-theme .table.coinlist .tbl-coin-abbrev {
    color: #3cb371;
}

.forest-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(34, 139, 34, 0.3);
}

.forest-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #3cb371, #2e8b57);
    box-shadow: 0 4px 10px rgba(60, 179, 113, 0.3);
}

.forest-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #cd5c5c, #8b0000);
    box-shadow: 0 4px 10px rgba(205, 92, 92, 0.3);
}

/* Mint Green Theme */
.mint-theme .table.coinlist {
    background: linear-gradient(135deg, #0d2b25 0%, #1a5349 50%, #26806d 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(152, 251, 152, 0.2);
    border: 1px solid rgba(152, 251, 152, 0.1);
}

.mint-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #98fb98;
    border-bottom: 2px solid rgba(152, 251, 152, 0.3);
    text-shadow: 0 0 5px rgba(152, 251, 152, 0.3);
}

.mint-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(152, 251, 152, 0.1);
}

.mint-theme .table.coinlist tbody tr:hover {
    background-color: rgba(152, 251, 152, 0.1);
    box-shadow: 0 0 15px rgba(152, 251, 152, 0.2);
}

.mint-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(152, 251, 152, 0.3);
}

.mint-theme .table.coinlist .tbl-coin-abbrev {
    color: #98fb98;
}

.mint-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(152, 251, 152, 0.3);
}

.mint-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #66cdaa, #3cb371);
    box-shadow: 0 4px 10px rgba(102, 205, 170, 0.3);
}

.mint-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff6b6b, #d63031);
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* Green Gold Theme */
.green-gold-theme .table.coinlist {
    background: linear-gradient(135deg, #1a2e0d 0%, #2d4b16 50%, #3d6b1f 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(173, 255, 47, 0.2);
    border: 1px solid rgba(173, 255, 47, 0.1);
}

.green-gold-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffd700;
    border-bottom: 2px solid rgba(173, 255, 47, 0.3);
    text-shadow: 0 0 5px rgba(173, 255, 47, 0.3);
}

.green-gold-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(173, 255, 47, 0.1);
}

.green-gold-theme .table.coinlist tbody tr:hover {
    background-color: rgba(173, 255, 47, 0.1);
    box-shadow: 0 0 15px rgba(173, 255, 47, 0.2);
}

.green-gold-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(173, 255, 47, 0.3);
}

.green-gold-theme .table.coinlist .tbl-coin-abbrev {
    color: #ffd700;
}

.green-gold-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(173, 255, 47, 0.3);
}

.green-gold-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #adff2f, #7cfc00);
    box-shadow: 0 4px 10px rgba(173, 255, 47, 0.3);
    color: #000;
}

.green-gold-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ffd700, #daa520);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
    color: #000;
}

/* Olive Green Theme */
.olive-theme .table.coinlist {
    background: linear-gradient(135deg, #1c2b0a 0%, #3b4d1b 50%, #556b2f 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(128, 128, 0, 0.2);
    border: 1px solid rgba(128, 128, 0, 0.1);
}

.olive-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #bdb76b;
    border-bottom: 2px solid rgba(128, 128, 0, 0.3);
    text-shadow: 0 0 5px rgba(128, 128, 0, 0.3);
}

.olive-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(128, 128, 0, 0.1);
}

.olive-theme .table.coinlist tbody tr:hover {
    background-color: rgba(128, 128, 0, 0.1);
    box-shadow: 0 0 15px rgba(128, 128, 0, 0.2);
}

.olive-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(128, 128, 0, 0.3);
}

.olive-theme .table.coinlist .tbl-coin-abbrev {
    color: #bdb76b;
}

.olive-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(128, 128, 0, 0.3);
}

.olive-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #6b8e23, #556b2f);
    box-shadow: 0 4px 10px rgba(107, 142, 35, 0.3);
}

.olive-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.3);
}

/* Jade Green Theme */
.jade-theme .table.coinlist {
    background: linear-gradient(135deg, #0a2e1a 0%, #1a5334 50%, #2a7850 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 168, 107, 0.2);
    border: 1px solid rgba(0, 168, 107, 0.1);
}

.jade-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #00a86b;
    border-bottom: 2px solid rgba(0, 168, 107, 0.3);
    text-shadow: 0 0 5px rgba(0, 168, 107, 0.3);
}

.jade-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(0, 168, 107, 0.1);
}

.jade-theme .table.coinlist tbody tr:hover {
    background-color: rgba(0, 168, 107, 0.1);
    box-shadow: 0 0 15px rgba(0, 168, 107, 0.2);
}

.jade-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 168, 107, 0.3);
}

.jade-theme .table.coinlist .tbl-coin-abbrev {
    color: #00a86b;
}

.jade-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(0, 168, 107, 0.3);
}

.jade-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #00a86b, #008b45);
    box-shadow: 0 4px 10px rgba(0, 168, 107, 0.3);
}

.jade-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff6347, #ff4500);
    box-shadow: 0 4px 10px rgba(255, 99, 71, 0.3);
}

/* Teal Gold Theme */
.teal-gold-theme .table.coinlist {
    background: linear-gradient(135deg, #0a2e2e 0%, #1a5757 50%, #2a8080 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 128, 128, 0.2);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.teal-gold-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffd700;
    border-bottom: 2px solid rgba(0, 128, 128, 0.3);
    text-shadow: 0 0 5px rgba(0, 128, 128, 0.3);
}

.teal-gold-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
}

.teal-gold-theme .table.coinlist tbody tr:hover {
    background-color: rgba(0, 128, 128, 0.1);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.2);
}

.teal-gold-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 128, 128, 0.3);
}

.teal-gold-theme .table.coinlist .tbl-coin-abbrev {
    color: #ffd700;
}

.teal-gold-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(0, 128, 128, 0.3);
}

.teal-gold-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #008080, #20b2aa);
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.3);
}

.teal-gold-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #daa520, #b8860b);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.3);
}

/* Lime Green Theme */
.lime-theme .table.coinlist {
    background: linear-gradient(135deg, #1a2e00 0%, #2d4b00 50%, #4c8000 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(50, 205, 50, 0.2);
    border: 1px solid rgba(50, 205, 50, 0.1);
}

.lime-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.5);
    color: #32cd32;
    border-bottom: 2px solid rgba(50, 205, 50, 0.3);
    text-shadow: 0 0 5px rgba(50, 205, 50, 0.3);
}

.lime-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(50, 205, 50, 0.1);
}

.lime-theme .table.coinlist tbody tr:hover {
    background-color: rgba(50, 205, 50, 0.1);
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
}

.lime-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(50, 205, 50, 0.3);
}

.lime-theme .table.coinlist .tbl-coin-abbrev {
    color: #32cd32;
}

.lime-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.lime-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #32cd32, #228b22);
    box-shadow: 0 4px 10px rgba(50, 205, 50, 0.3);
}

.lime-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #ff4500, #ff8c00);
    box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

/* Dark Emerald Theme */
.dark-emerald-theme .table.coinlist {
    background: linear-gradient(135deg, #051a12 0%, #0a3323 50%, #0f4d35 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 100, 0, 0.2);
    border: 1px solid rgba(0, 100, 0, 0.1);
}

.dark-emerald-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.7);
    color: #00cc66;
    border-bottom: 2px solid rgba(0, 100, 0, 0.3);
    text-shadow: 0 0 5px rgba(0, 100, 0, 0.3);
}

.dark-emerald-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(0, 100, 0, 0.1);
}

.dark-emerald-theme .table.coinlist tbody tr:hover {
    background-color: rgba(0, 100, 0, 0.1);
    box-shadow: 0 0 15px rgba(0, 100, 0, 0.2);
}

.dark-emerald-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(0, 100, 0, 0.3);
}

.dark-emerald-theme .table.coinlist .tbl-coin-abbrev {
    color: #00cc66;
}

.dark-emerald-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(0, 100, 0, 0.3);
}

.dark-emerald-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #006400, #008000);
    box-shadow: 0 4px 10px rgba(0, 100, 0, 0.3);
}

.dark-emerald-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #8b0000, #b22222);
    box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

/* Green Luxury Theme */
.green-luxury-theme .table.coinlist {
    background: linear-gradient(135deg, #0a1a0a 0%, #1e3e1e 50%, #2d5c2d 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(85, 107, 47, 0.2);
    border: 1px solid rgba(85, 107, 47, 0.1);
}

.green-luxury-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.6);
    color: #d4af37; /* Gold */
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.green-luxury-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(85, 107, 47, 0.1);
}

.green-luxury-theme .table.coinlist tbody tr:hover {
    background-color: rgba(85, 107, 47, 0.1);
    box-shadow: 0 0 15px rgba(85, 107, 47, 0.2);
}

.green-luxury-theme .table.coinlist .tbl-currency {
    color: #ffffff;
    text-shadow: 0 0 3px rgba(212, 175, 55, 0.3);
}

.green-luxury-theme .table.coinlist .tbl-coin-abbrev {
    color: #d4af37; /* Gold */
}

.green-luxury-theme .table.coinlist .tbl-icon {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.green-luxury-theme .table.coinlist .btn-success {
    background: linear-gradient(135deg, #556b2f, #6b8e23);
    box-shadow: 0 4px 10px rgba(85, 107, 47, 0.3);
}

.green-luxury-theme .table.coinlist .btn-danger {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* New Solid Color Theme Styles */

/* Royal Blue Theme */
.royal-blue-theme .table.coinlist {
    background: #1e3799;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.royal-blue-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.royal-blue-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.royal-blue-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.royal-blue-theme .table.coinlist .btn-success {
    background: #4cd137;
    box-shadow: 0 4px 10px rgba(76, 209, 55, 0.3);
}

.royal-blue-theme .table.coinlist .btn-danger {
    background: #e84118;
    box-shadow: 0 4px 10px rgba(232, 65, 24, 0.3);
}

/* Deep Purple Theme */
.deep-purple-theme .table.coinlist {
    background: #6c5ce7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.deep-purple-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.deep-purple-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.deep-purple-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.deep-purple-theme .table.coinlist .btn-success {
    background: #00b894;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
}

.deep-purple-theme .table.coinlist .btn-danger {
    background: #ff7675;
    box-shadow: 0 4px 10px rgba(255, 118, 117, 0.3);
}

/* Midnight Blue Theme */
.midnight-blue-theme .table.coinlist {
    background: #0c2461;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.midnight-blue-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #dff9fb;
    border-bottom: 2px solid rgba(223, 249, 251, 0.2);
}

.midnight-blue-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(223, 249, 251, 0.1);
}

.midnight-blue-theme .table.coinlist tbody tr:hover {
    background-color: rgba(223, 249, 251, 0.05);
}

.midnight-blue-theme .table.coinlist .btn-success {
    background: #1dd1a1;
    box-shadow: 0 4px 10px rgba(29, 209, 161, 0.3);
}

.midnight-blue-theme .table.coinlist .btn-danger {
    background: #ff6b6b;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
}

/* Solid Black Theme */
.solid-black-theme .table.coinlist {
    background: #111111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.solid-black-theme .table.coinlist thead th {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.solid-black-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.solid-black-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.solid-black-theme .table.coinlist .btn-success {
    background: #00b894;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.3);
}

.solid-black-theme .table.coinlist .btn-danger {
    background: #d63031;
    box-shadow: 0 4px 10px rgba(214, 48, 49, 0.3);
}

/* Charcoal Theme */
.charcoal-theme .table.coinlist {
    background: #333333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.charcoal-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.charcoal-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.charcoal-theme .table.coinlist tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.charcoal-theme .table.coinlist .btn-success {
    background: #20bf6b;
    box-shadow: 0 4px 10px rgba(32, 191, 107, 0.3);
}

.charcoal-theme .table.coinlist .btn-danger {
    background: #eb4d4b;
    box-shadow: 0 4px 10px rgba(235, 77, 75, 0.3);
}

/* Burgundy Theme */
.burgundy-theme .table.coinlist {
    background: #6a0f0f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.burgundy-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #f8c291;
    border-bottom: 2px solid rgba(248, 194, 145, 0.2);
}

.burgundy-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(248, 194, 145, 0.1);
}

.burgundy-theme .table.coinlist tbody tr:hover {
    background-color: rgba(248, 194, 145, 0.05);
}

.burgundy-theme .table.coinlist .btn-success {
    background: #f6b93b;
    box-shadow: 0 4px 10px rgba(246, 185, 59, 0.3);
    color: #000;
}

.burgundy-theme .table.coinlist .btn-danger {
    background: #e55039;
    box-shadow: 0 4px 10px rgba(229, 80, 57, 0.3);
}

/* Navy Theme */
.navy-theme .table.coinlist {
    background: #0a3d62;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navy-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #c7ecee;
    border-bottom: 2px solid rgba(199, 236, 238, 0.2);
}

.navy-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(199, 236, 238, 0.1);
}

.navy-theme .table.coinlist tbody tr:hover {
    background-color: rgba(199, 236, 238, 0.05);
}

.navy-theme .table.coinlist .btn-success {
    background: #78e08f;
    box-shadow: 0 4px 10px rgba(120, 224, 143, 0.3);
    color: #000;
}

.navy-theme .table.coinlist .btn-danger {
    background: #e58e26;
    box-shadow: 0 4px 10px rgba(229, 142, 38, 0.3);
}

/* Forest Solid Theme */
.forest-solid-theme .table.coinlist {
    background: #0b6623;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.forest-solid-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #c8e6c9;
    border-bottom: 2px solid rgba(200, 230, 201, 0.2);
}

.forest-solid-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(200, 230, 201, 0.1);
}

.forest-solid-theme .table.coinlist tbody tr:hover {
    background-color: rgba(200, 230, 201, 0.05);
}

.forest-solid-theme .table.coinlist .btn-success {
    background: #ffeb3b;
    box-shadow: 0 4px 10px rgba(255, 235, 59, 0.3);
    color: #000;
}

.forest-solid-theme .table.coinlist .btn-danger {
    background: #ff5722;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
}

/* Teal Solid Theme */
.teal-solid-theme .table.coinlist {
    background: #006064;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.teal-solid-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #b2ebf2;
    border-bottom: 2px solid rgba(178, 235, 242, 0.2);
}

.teal-solid-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(178, 235, 242, 0.1);
}

.teal-solid-theme .table.coinlist tbody tr:hover {
    background-color: rgba(178, 235, 242, 0.05);
}

.teal-solid-theme .table.coinlist .btn-success {
    background: #4caf50;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.teal-solid-theme .table.coinlist .btn-danger {
    background: #f44336;
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}

/* Indigo Theme */
.indigo-theme .table.coinlist {
    background: #303f9f;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.indigo-theme .table.coinlist thead th {
    background-color: rgba(0, 0, 0, 0.3);
    color: #e8eaf6;
    border-bottom: 2px solid rgba(232, 234, 246, 0.2);
}

.indigo-theme .table.coinlist tbody tr {
    border-bottom: 1px solid rgba(232, 234, 246, 0.1);
}

.indigo-theme .table.coinlist tbody tr:hover {
    background-color: rgba(232, 234, 246, 0.05);
}

.indigo-theme .table.coinlist .btn-success {
    background: #00bcd4;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.indigo-theme .table.coinlist .btn-danger {
    background: #ff5252;
    box-shadow: 0 4px 10px rgba(255, 82, 82, 0.3);
}

/* Theme Switcher Styles */
.theme-switcher {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 15px;
    width: fit-content;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
}

.theme-switcher::before {
    content: attr(data-theme-text);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    padding: 2px 15px;
    border-radius: 15px;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.theme-option {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.theme-option:hover {
    transform: scale(1.3);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.theme-option.active {
    border: 2px solid white;
    transform: scale(1.2);
}

.theme-default {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.theme-neon {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.theme-elegant {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.theme-futuristic {
    background: linear-gradient(135deg, #000428 0%, #004e92 100%);
}

.theme-razewin-red {
    background: linear-gradient(135deg, #1a0000 0%, #3d0000 50%, #800000 100%);
}

.theme-razewin-gold {
    background: linear-gradient(135deg, #1a1000 0%, #302000 50%, #503000 100%);
}

.theme-razewin-dark-gold {
    background: linear-gradient(135deg, #000000 0%, #1a1000 50%, #302000 100%);
}

.theme-emerald {
    background: linear-gradient(135deg, #0a2e1f 0%, #145a3c 50%, #1e8759 100%);
}

.theme-forest {
    background: linear-gradient(135deg, #0b2e0b 0%, #1b5e1b 50%, #2d8c2d 100%);
}

.theme-mint {
    background: linear-gradient(135deg, #0d2b25 0%, #1a5349 50%, #26806d 100%);
}

.theme-green-gold {
    background: linear-gradient(135deg, #1a2e0d 0%, #2d4b16 50%, #3d6b1f 100%);
}

.theme-olive {
    background: linear-gradient(135deg, #1c2b0a 0%, #3b4d1b 50%, #556b2f 100%);
}

.theme-jade {
    background: linear-gradient(135deg, #0a2e1a 0%, #1a5334 50%, #2a7850 100%);
}

.theme-teal-gold {
    background: linear-gradient(135deg, #0a2e2e 0%, #1a5757 50%, #2a8080 100%);
}

.theme-lime {
    background: linear-gradient(135deg, #1a2e00 0%, #2d4b00 50%, #4c8000 100%);
}

.theme-dark-emerald {
    background: linear-gradient(135deg, #051a12 0%, #0a3323 50%, #0f4d35 100%);
}

.theme-green-luxury {
    background: linear-gradient(135deg, #0a1a0a 0%, #1e3e1e 50%, #2d5c2d 100%);
}

/* New Solid Color Themes */
.theme-royal-blue {
    background: #1e3799;
}

.theme-deep-purple {
    background: #6c5ce7;
}

.theme-midnight-blue {
    background: #0c2461;
}

.theme-solid-black {
    background: #111111;
}

.theme-charcoal {
    background: #333333;
}

.theme-burgundy {
    background: #6a0f0f;
}

.theme-navy {
    background: #0a3d62;
}

.theme-forest-solid {
    background: #0b6623;
}

.theme-teal-solid {
    background: #006064;
}

.theme-indigo {
    background: #303f9f;
}
