.ozdal-marketplace-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ozdal-listing-item {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    background: #fff;
}

.ozdal-listing-item h3 {
    margin-top: 0;
}

.ozdal-listing-meta {
    margin-bottom: 15px;
    font-weight: bold;
    color: #2c3e50;
}

.ozdal-dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.ozdal-dashboard-table th,
.ozdal-dashboard-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.ozdal-dashboard-table th {
    background-color: #f2f2f2;
}