.urban-form-container {
    width: 100%;
    direction: rtl;
    box-sizing: border-box;
}

.urban-form {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
}

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

.urban-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.urban-form-group input[type="text"],
.urban-form-group input[type="tel"],
.urban-form-group input[type="email"],
.urban-form-group textarea,
.urban-form-group select {
    width: 100%;
    padding: 0px 10px;
    border: 1px solid #8f959b;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fff;
}

.urban-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.urban-date-selector {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.urban-date-option {
    flex: 1;
    min-width: calc(14.28% - 8px);
}

.urban-date-option input[type="radio"] {
    display: none;
}

.urban-date-option label {
    display: block;
    padding: 10px 5px;
    border: 1px solid #000;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    font-size: 12px;
}

.urban-date-option label:hover {
    background: #f5f5f5;
}

.urban-date-option input[type="radio"]:checked + label {
    background: #000;
    color: #fff;
}

.urban-date-option .day-name {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    font-size: 11px;
}

.urban-date-option .day-date {
    display: block;
    font-size: 10px;
}

.urban-submit-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.urban-submit-btn:hover {
    background: #333;
}

.urban-submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.urban-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: none;
}

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

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

@media (max-width: 768px) {
    .urban-date-selector {
        gap: 5px;
    }
    
    .urban-date-option {
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }
    
    .urban-date-option label {
        padding: 8px 3px;
        font-size: 11px;
    }
    
    .urban-date-option .day-name {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .urban-date-option .day-date {
        font-size: 9px;
    }
}