.asan-dashboard {
    max-width: 1400px;
    margin: 30px auto;
    padding: 20px;
}

.asan-dashboard h2 {
    margin-bottom: 25px;
    color: #006400;
}

.asan-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.asan-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    border-top: 4px solid #006400;
}

.asan-card h3 {
    margin: 0;
    font-size: 16px;
    color: #666;
}

.asan-card span {
    display: block;
    margin-top: 10px;
    font-size: 32px;
    font-weight: bold;
    color: #006400;
}

.asan-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.asan-table th {
    background: #006400;
    color: #fff;
    padding: 12px;
}

.asan-table td {
    padding: 10px;
    border: 1px solid #ddd;
}

.asan-table tr:nth-child(even) {
    background: #f7f7f7;
}

.asan-btn-view {

    display: inline-block !important;

    background: #006400 !important;

    color: #ffffff !important;

    padding: 8px 15px !important;

    border-radius: 5px !important;

    text-decoration: none !important;

    font-weight: 600;

}

.asan-btn-view:hover {

    background: #008000 !important;

    color: #ffffff !important;

}