/* Your existing CSS styles */
/* Make sure to add any WordPress-specific styles if needed */

/* Admin specific styles */
.webdev-invoice-dashboard {
    background: #fff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
}

.webdev-invoice-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.stat-card {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
}

.stat-card h3 {
    margin-top: 0;
    color: #555;
    font-size: 14px;
}

.stat-card p {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0;
}

.webdev-invoice-actions {
    margin-top: 20px;
}

/* Frontend lookup form */
.webdev-invoice-lookup {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    max-width: 600px;
    margin: 20px auto;
}

.webdev-invoice-lookup h3 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}