.sc-wrapper { max-width: 1000px; margin: 20px auto; }

/* Filters */
.sc-filters { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.sc-filters input[type="text"], .sc-filters select {
    padding: 8px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;
}
.sc-filters button {
    background: #2c3e50; color: #fff; border: none; padding: 8px 16px; border-radius: 4px; cursor: pointer;
}

/* Grid */
.sc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.sc-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.15); transition: 0.2s; }
.sc-card:hover { box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.sc-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.sc-noimg { width: 100%; height: 160px; background: #eee; display: flex; align-items: center; justify-content: center; color: #999; }
.sc-card-body { padding: 12px; }
.sc-card-body h3 { margin: 4px 0; font-size: 16px; }
.sc-card-body h3 a { color: #222; text-decoration: none; }
.sc-category { display: inline-block; background: #ecf0f1; color: #555; font-size: 12px; padding: 2px 8px; border-radius: 10px; }
.sc-price { color: #27ae60; font-weight: bold; margin: 6px 0; font-size: 16px; }
.sc-view-btn { display: inline-block; background: #2c3e50; color: #fff !important; text-decoration: none; padding: 8px 14px; border-radius: 4px; margin-top: 6px; font-size: 14px; }
.sc-empty { text-align: center; color: #888; grid-column: 1 / -1; padding: 40px 0; }

/* Pagination */
.sc-pagination { margin-top: 20px; text-align: center; }
.sc-pagination a, .sc-pagination span { margin: 0 4px; padding: 6px 10px; border: 1px solid #ddd; border-radius: 4px; text-decoration: none; color: #333; }

/* Form */
.sc-form { max-width: 500px; }
.sc-form label { display: block; margin: 12px 0 4px; font-weight: bold; font-size: 14px; }
.sc-form input, .sc-form select, .sc-form textarea {
    width: 100%; padding: 8px; box-sizing: border-box; border: 1px solid #ccc; border-radius: 4px; font-size: 14px;
}
.sc-form textarea { height: 100px; resize: vertical; }
.sc-form button {
    margin-top: 18px; background: #27ae60; color: #fff; border: none; padding: 10px 20px;
    border-radius: 4px; cursor: pointer; font-size: 15px;
}
.sc-error { color: #c0392b; }
.sc-success { color: #27ae60; }

/* Dashboard Table */
.sc-table { width: 100%; border-collapse: collapse; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.15); border-radius: 8px; overflow: hidden; }
.sc-table th, .sc-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid #eee; font-size: 14px; }
.sc-table th { background: #ecf0f1; }

/* Single Ad Page */
.sc-single-ad .sc-price { font-size: 22px; }
.sc-single-ad .sc-description { margin: 15px 0; line-height: 1.6; }
.sc-contact-box { background: #f9f9f9; border: 1px solid #eee; padding: 14px; border-radius: 6px; margin-top: 10px; }
