.sws-workers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 0;
    direction: rtl;
}

.sws-worker-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.sws-worker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.sws-worker-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #f0f0f0;
}

.sws-worker-info {
    padding: 20px;
}

.sws-worker-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 0;
}

.sws-worker-details {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.sws-worker-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.sws-skill-badge {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.sws-book-btn {
    width: 100%;
    padding: 12px;
    background: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

.sws-book-btn:hover {
    background: #27ae60;
}

.sws-filters-container {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sws-filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sws-filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sws-filter-group input,
.sws-filter-group select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sws-booking-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    direction: rtl;
}

.sws-form-group {
    margin-bottom: 20px;
}

.sws-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.sws-form-group input,
.sws-form-group select,
.sws-form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.sws-submit-btn {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

.sws-submit-btn:hover {
    background: #2980b9;
}

.sws-track-order {
    background: white;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    direction: rtl;
}

.sws-order-result {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
}

.sws-alert {
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.sws-alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.sws-alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
