/* ========================================
   BULK HEALTH MODAL
   Hromadné zdravotní úkony (odčervení, očkování)
   Komponenta (BEM, MOBILE FIRST)
   ======================================== */

.bulk-health-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bulk-health-modal__inner {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.bulk-health-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
}

.bulk-health-modal__title {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bulk-health-modal__title svg {
    color: #f97316;
    flex-shrink: 0;
}

.bulk-health-modal__close {
    background: none;
    border: none;
    font-size: 24px;
    color: #9ca3af;
    cursor: pointer;
}

.bulk-health-modal__close:hover {
    color: #374151;
}

/* Body */
.bulk-health-modal__body {
    padding: 20px 24px;
    overflow-y: auto;
    flex: 1;
}

/* Seznam vybraných psů */
.bulk-health-modal__dogs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.bulk-health-modal__dog-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 5px;
    background: #f3f4f6;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
}

.bulk-health-modal__dog-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.bulk-health-modal__dog-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    margin-left: 2px;
}

.bulk-health-modal__dog-remove:hover {
    color: #ef4444;
}

/* Separator */
.bulk-health-modal__separator {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 16px;
}

/* Pole formuláře */
.bulk-health-modal__field {
    margin-bottom: 16px;
}

.bulk-health-modal__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.bulk-health-modal__input,
.bulk-health-modal__select {
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    color: #1a1a2e;
    background: #fff;
    box-sizing: border-box;
}

.bulk-health-modal__input:focus,
.bulk-health-modal__select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.bulk-health-modal__hint {
    display: block;
    font-size: 11px;
    color: #9ca3af;
    margin-top: 4px;
}

/* Řádek se dvěma poli vedle sebe */
.bulk-health-modal__row {
    display: flex;
    gap: 12px;
}

.bulk-health-modal__row .bulk-health-modal__field {
    flex: 1;
}

/* Auto-výpočet příštího termínu */
.bulk-health-modal__next-date {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    font-size: 13px;
    color: #166534;
    font-weight: 500;
}

.bulk-health-modal__next-date svg {
    flex-shrink: 0;
    color: #22c55e;
}

.bulk-health-modal__next-date-value {
    font-weight: 700;
}

/* Checkbox řádek */
.bulk-health-modal__checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

.bulk-health-modal__checkbox {
    width: 16px;
    height: 16px;
    accent-color: #f97316;
    cursor: pointer;
}

/* Upload dokladu */
.bulk-health-modal__file-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bulk-health-modal__file-input {
    font-size: 13px;
    color: #6b7280;
}

.bulk-health-modal__file-hint {
    font-size: 11px;
    color: #9ca3af;
}

/* Akce */
.bulk-health-modal__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    padding: 16px 24px 20px;
    border-top: 1px solid #e5e7eb;
}

.bulk-health-modal__cancel {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    color: #6b7280;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.bulk-health-modal__cancel:hover {
    background: #e5e7eb;
}

.bulk-health-modal__submit {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    background: #f97316;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.bulk-health-modal__submit:hover {
    background: #ea580c;
}

/* ----------------------------------------
   DESKTOP (768px+)
   ---------------------------------------- */
@media (min-width: 768px) {
    .bulk-health-modal__inner {
        max-width: 560px;
    }
}
