﻿<style >
/* Tab content */
.tab-content {
    background-color: #1a1a2e;
    padding: 12px;
    border-radius: 10px;
}

/* Tab panes */
.tab-pane {
    padding-top: 10px;
}

/* Shop cards - larger and proportional */
.shop-card {
    width: 160px; /* bigger card */
    height: 160px; /* bigger card */
    border-radius: 10px;
    background-color: #1e1e2f;
    border: 1px solid #333;
    color: #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    transition: transform 0.15s;
}

    .shop-card:hover {
        transform: scale(1.05);
    }

    /* Card title */
    .shop-card .card-title {
        font-size: 1.1rem; /* larger text */
        font-weight: 600;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 10px;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Buttons */
    .shop-card .btn {
        font-size: 0.95rem; /* bigger button text */
        padding: 6px 10px;
        border-radius: 5px;
    }

    .shop-card .btn-success {
        background-color: #28a745;
        border: none;
    }

    .shop-card .btn-primary {
        background-color: #007bff;
        border: none;
        margin-left: 6px;
    }

/* Tabs navigation styling (optional for dark theme) */
.nav-tabs .nav-link {
    color: #eee;
    background-color: #1e1e2f;
    border: 1px solid #333;
    margin-right: 2px;
    border-radius: 6px 6px 0 0;
}

    .nav-tabs .nav-link.active {
        background-color: #282840;
        color: #ffcc00;
        border-color: #333 #333 #1a1a2e;
    }

.nav-tabs {
    border-bottom: none;
    margin-bottom: 10px;
}

</style >
