.darobox-wrapper {
    direction: rtl;
    text-align: right;
    font-family: Tahoma, sans-serif;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.drbx-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.drbx-option-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.drbx-option-btn:hover {
    background: #eef7ff;
    border-color: #0073aa;
}

.medicine-item {
    background: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.medicine-item input, .medicine-item select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.counter-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.counter-wrapper button {
    width: 30px;
    height: 30px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
}

.next-step, .submit-btn {
    background: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    width: 100%;
}