/* Main Container */
.container {
    max-width: 1200px;
}

/* Card Styling */
.card {
    transition: transform 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

/* Icons */
.bi {
    color: var(--bs-primary);
}

/* Table Styling */
.table {
    margin-bottom: 0;
}

.table th {
    background-color: var(--bs-light);
    font-weight: 600;
}

/* Accordion Styling */
.accordion-button:not(.collapsed) {
    background-color: var(--bs-light);
    color: var(--bs-primary);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

/* List Group Styling */
.list-group-item {
    border-left: none;
    border-right: none;
    padding: 1rem;
}

.list-group-item:first-child {
    border-top: none;
}

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

/* Chart Container */
#marketChart {
    width: 100%;
    height: 300px;
}

/* Breadcrumb Styling */
.breadcrumb {
    background-color: transparent;
    padding: 1rem 0;
}

.breadcrumb-item a {
    color: var(--bs-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--bs-secondary);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
    
    .table-responsive {
        margin-bottom: 1rem;
    }
}

/* Section Spacing */
section {
    margin-bottom: 3rem;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Button Styling */
.btn-primary {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

/* Card Title */
.card-title {
    margin-bottom: 1.5rem;
}

/* List Styling */
.list-unstyled li {
    margin-bottom: 0.75rem;
}

/* Icon Colors */
.text-success {
    color: var(--bs-success) !important;
}

/* Shadow Effects */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
} 