.dashboard-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-header h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #463758;
}

.dashboard-header button {
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFF;
    background-color: #2BC4C3;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dashboard-header button:hover {
    background-color: #1AA6A5;
}

.filters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: #FFF;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filters-container select,
.filters-container input {
    padding: 8px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filters-container button {
    padding: 8px 18px;
    background-color: #2BC4C3;
    color: #FFF;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.filters-container button:hover {
    background-color: #1AA6A5;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #525B65;
    margin-bottom: 8px;
}

.card-value {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2BC4C3;
}

.card-chart {
    margin-top: 10px;
    height: 70px;
    background: linear-gradient(to top, #E0F7F8, #F3F4F6);
    border-radius: 6px;
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.report-card {
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.report-card h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #463758;
    margin-bottom: 12px;
}

.report-chart {
    height: 150px;
    background: linear-gradient(to right, #E0F7F8, #C7D2FE);
    border-radius: 6px;
}

.product-lists {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.product-list {
    flex: 1;
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px;
}

.product-list h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #463758;
    margin-bottom: 12px;
}

.product-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.product-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    margin-right: 12px;
}

.product-item div {
    display: flex;
    flex-direction: column;
}

.product-item span {
    font-size: 0.9rem;
    color: #525B65;
}

.product-item span.price {
    font-weight: 500;
    color: #2BC4C3;
}
</style>