/* Additional Dashboard Specific Styles */
.bb-chart-container {
    position: relative;
    height: 300px;
    margin: 2rem 0;
}

.bb-saved-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.bb-saved-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s;
}

.bb-saved-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

.bb-history-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    gap: 1rem;
}

.bb-history-item .icon {
    font-size: 2rem;
}

.bb-history-item .details {
    flex: 1;
}

.bb-history-item .details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.bb-history-item .timestamp {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.bb-credit-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.bb-package-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.bb-package-card.popular {
    border-color: #6366f1;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #6366f1;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.package-credits {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 1rem 0;
}

.package-price {
    margin: 1rem 0;
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
}

.package-price .discount {
    display: inline-block;
    margin-left: 0.5rem;
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.package-features li:before {
    content: "✓ ";
    color: #10b981;
    font-weight: 700;
    margin-right: 0.5rem;
}
