/* App Dashboard Frontend Styles */

.app-dashboard-widget {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.app-dashboard-section {
    margin-bottom: 30px;
}

.app-dashboard-section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.app-dashboard-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-dashboard-link {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.app-dashboard-link:last-child {
    border-bottom: none;
}

.app-dashboard-link-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 2px;
}

.app-dashboard-link-content {
    flex: 1;
}

.app-dashboard-link-title {
    font-weight: bold;
    color: #0073aa;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.app-dashboard-link-title:hover {
    color: #005a87;
}

.app-dashboard-link-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.app-dashboard-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.app-dashboard-error {
    background: #fcf2f2;
    border: 1px solid #ddd;
    color: #d63638;
    padding: 15px;
    border-radius: 3px;
    margin: 10px 0;
}
