/* ChildReminder 親画面 CSS */
:root {
    --color-primary:    #4f7dff;
    --color-primary-dk: #3a66e0;
    --color-bg:         #f5f6fa;
    --color-surface:    #ffffff;
    --color-border:     #e2e8f0;
    --color-text:       #1a202c;
    --color-text-sub:   #718096;
    --color-danger:     #e53e3e;
    --color-success:    #38a169;
    --color-warning:    #dd6b20;
    --tab-height:       56px;
    --safe-bottom:      env(safe-area-inset-bottom, 0px);
    --safe-top:         env(safe-area-inset-top, 0px);
    --header-height:    52px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: var(--color-text);
    background: var(--color-bg);
    height: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* ===== ログイン画面 ===== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 24px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.login-container {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.login-logo {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4px;
}

.login-subtitle {
    text-align: center;
    color: var(--color-text-sub);
    font-size: 14px;
    margin-bottom: 24px;
}

.login-form .form-group { margin-bottom: 16px; }

.login-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-sub);
    margin-bottom: 6px;
}

.login-form input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: border-color .15s;
}

.login-form input:focus { border-color: var(--color-primary); }

.error-message {
    background: #fff5f5;
    border: 1px solid #fc8181;
    color: var(--color-danger);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* ===== ボタン ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .15s, transform .1s;
    text-decoration: none;
}
.btn:active { transform: scale(.97); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary  { background: var(--color-primary); color: white; }
.btn-primary:hover { background: var(--color-primary-dk); }
.btn-danger   { background: var(--color-danger); color: white; }
.btn-ghost      { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn-secondary  { background: #edf2f7; color: var(--color-text); }
.btn-secondary:hover { background: #e2e8f0; }
.btn-block    { width: 100%; margin-top: 8px; }
.btn-sm       { padding: 8px 14px; font-size: 13px; }

/* ===== 親画面シェル ===== */
#app {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    padding-top: var(--safe-top);
}

#app-header {
    height: var(--header-height);
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
    position: sticky;
    top: 0;
    z-index: 100;
}

#app-header .header-title {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#app-header .header-back {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

#app-content {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#app-tab-bar {
    height: calc(var(--tab-height) + var(--safe-bottom));
    padding-bottom: var(--safe-bottom);
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 100;
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    cursor: pointer;
    color: var(--color-text-sub);
    font-size: 10px;
    font-weight: 500;
    padding: 6px 4px;
    transition: color .15s;
    text-decoration: none;
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

.tab-item.active { color: var(--color-primary); }

.tab-item .tab-icon { font-size: 22px; line-height: 1; }

/* ===== ページコンテナ ===== */
.page { padding: 16px; }

.page-section {
    background: var(--color-surface);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
}

.page-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-sub);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
}

/* ===== リスト ===== */
.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}
.list-item:last-child { border-bottom: none; }

/* ===== フォーム ===== */
.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-sub);
    margin-bottom: 6px;
}

.form-input, .form-select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-size: 16px;
    background: var(--color-surface);
    outline: none;
    transition: border-color .15s;
    -webkit-appearance: none;
    appearance: none;
}

.form-input:focus, .form-select:focus {
    border-color: var(--color-primary);
}

.form-error {
    color: var(--color-danger);
    font-size: 12px;
    margin-top: 4px;
}

/* ===== バッジ ===== */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
}
.badge-primary { background: #ebf4ff; color: var(--color-primary); }
.badge-success { background: #f0fff4; color: var(--color-success); }
.badge-green   { background: #f0fff4; color: var(--color-success); }
.badge-danger  { background: #fff5f5; color: var(--color-danger); }
.badge-gray    { background: #edf2f7; color: var(--color-text-sub); }

/* ===== ローディング ===== */
.spinner {
    width: 24px; height: 24px;
    border: 3px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
}

/* ===== 空状態 ===== */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--color-text-sub);
}
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state-text { font-size: 15px; margin-bottom: 16px; }

/* ===== トースト通知 ===== */
#toast-container {
    position: fixed;
    bottom: calc(var(--tab-height) + var(--safe-bottom) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
    width: min(360px, calc(100vw - 32px));
}

.toast {
    background: #2d3748;
    color: white;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    animation: toast-in .2s ease;
}
.toast.success { background: #276749; }
.toast.error   { background: #9b2c2c; }
@keyframes toast-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== モーダル ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 500;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.modal-sheet {
    background: var(--color-surface);
    border-radius: 16px 16px 0 0;
    padding: 20px 16px calc(20px + var(--safe-bottom));
    width: 100%;
    max-height: 85dvh;
    overflow-y: auto;
}

.modal-handle {
    width: 40px; height: 4px;
    background: var(--color-border);
    border-radius: 2px;
    margin: 0 auto 16px;
}

.modal-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
}

.modal-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: 24px;
    width: calc(100% - 32px);
    max-width: 400px;
    margin: auto;
}

/* ===== 設定サブページ共通 ===== */

/* チェックボックス付きリスト行 */
.sm-check-row {
    cursor: pointer;
    user-select: none;
}
.sm-check-box {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--color-primary);
}
.sm-mode-tags {
    font-size: 12px;
    color: var(--color-text-sub);
    margin-left: 6px;
}

/* トグル（チェックボックス + ラベル） */
.sm-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.sm-toggle-input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}
.sm-toggle-text {
    font-size: 14px;
    color: var(--color-text);
}

/* インラインフォーム（ルール追加・休業日追加など） */
.sm-rule-form {
    background: var(--color-bg);
    border-radius: 10px;
    padding: 14px;
    margin-top: 10px;
}

/* チェック項目マスタ */
.im-mode-row {
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.im-mode-row:last-child {
    border-bottom: 0;
}
.im-mode-detail {
    margin-top: 12px;
    padding-left: 30px;
}

/* 曜日チップ */
.sd-wd-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}
.sd-wd-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    transition: border-color .15s, background .15s;
}
.sd-wd-chip--on {
    border-color: var(--color-primary);
    background: #ebf4ff;
    color: var(--color-primary);
}

/* ===== 子供管理 ===== */
.ch-child-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 10px;
}
.ch-photo-wrap { flex-shrink: 0; }
.ch-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.ch-photo-placeholder {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.ch-child-info { flex: 1; min-width: 0; }
.ch-child-name { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.ch-child-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-sub);
}
.ch-theme-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.ch-child-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.ch-photo-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    margin-bottom: 8px;
}
.ch-photo--lg { width: 72px; height: 72px; }
.ch-photo-placeholder--lg { width: 72px; height: 72px; font-size: 32px; }
.ch-color-picker { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.ch-color-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: border-color .15s, transform .15s;
}
.ch-color-btn--selected {
    border-color: var(--color-text);
    transform: scale(1.15);
}
.ch-inactive-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    color: var(--color-text-sub);
    font-weight: 600;
}
.ch-time-row {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}
.ch-time-row:last-child { border-bottom: none; }
.ch-time-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}
.ch-time-input { max-width: 120px; }
.ch-time-sep { font-size: 14px; color: var(--color-text-sub); flex-shrink: 0; }

/* ===== ホームタブ (T071-T072) ===== */
.ph-child-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}
.ph-child-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #fafafa;
    border-bottom: 1px solid var(--color-border);
}
.ph-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.ph-avatar-initial {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700; color: white;
    flex-shrink: 0;
}
.ph-child-info { flex: 1; }
.ph-child-name { font-weight: 700; font-size: 15px; }
.ph-child-mode { font-size: 12px; color: var(--color-text-sub); }
.ph-child-pts { text-align: right; flex-shrink: 0; }
.ph-pts-main  { font-weight: 700; font-size: 15px; color: var(--color-primary); }
.ph-pts-today { font-size: 12px; color: var(--color-success); }

/* 今日／明日ブロック */
.ph-day-block { border-top: 1px solid var(--color-border); }
.ph-day-block + .ph-day-block { border-top: 2px solid var(--color-border); }
.ph-day-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-text-sub);
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 6px 14px 2px;
    background: #f7f7f7;
}

/* シチュエーションブロック */
.ph-sit-block {
    padding: 10px 14px 10px;
}
.ph-sit-block + .ph-sit-block {
    border-top: 1px solid var(--color-border);
    margin-top: 14px;
    padding-top: 14px;
}
.ph-sit-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.ph-sit-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-main);
    flex: 1;
}
.ph-sit-badge {
    font-size: 11px;
    font-weight: 600;
    border-radius: 99px;
    padding: 1px 8px;
    flex-shrink: 0;
}
.ph-sit-badge--done    { background: #c6f6d5; color: #276749; }
.ph-sit-badge--pending { background: #fed7aa; color: #9c4221; }
.ph-sit-badge--empty   { color: #bbb; font-size: 11px; }

/* チェック項目行 */
.ph-item-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0 4px 4px;
    font-size: 13px;
    line-height: 1.3;
}
.ph-item-row--done    { color: var(--color-text-sub); }
.ph-item-row--skipped { color: #a0aec0; }
.ph-item-name {
    font-weight: 700;
    flex-shrink: 0;
    min-width: 4em;
}
.ph-item-msg {
    flex: 1;
    color: var(--color-text-sub);
    font-size: 12px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ph-item-check {
    flex-shrink: 0;
    font-size: 14px;
}
.ph-item-time {
    font-size: 11px;
    color: var(--color-text-sub);
    flex-shrink: 0;
    min-width: 3em;
    text-align: right;
}

.ph-child-footer {
    display: flex;
    justify-content: flex-end;
    padding: 6px 14px;
    border-top: 1px solid var(--color-border);
    background: #fafafa;
}
.ph-lastop { font-size: 12px; color: var(--color-text-sub); }
.ch-child-status { margin-top: 4px; }

/* ===== カレンダータブ (T073-T074) ===== */
.cal-nav {
    display: flex; align-items: center; justify-content: space-between;
    padding: 8px 16px 0;
}
.cal-title { font-size: 17px; font-weight: 700; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: var(--color-border);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    overflow: hidden;
    margin: 12px 16px 0;
}
.cal-header-cell {
    background: #f0f4ff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 0;
    color: var(--color-primary);
}
.cal-cell {
    background: var(--color-surface);
    min-height: 52px;
    padding: 4px 4px 2px;
    position: relative;
}
.cal-cell--empty { background: #fafafa; }
.cal-cell--today { background: #f0f4ff; }
.cal-cell--weekend .cal-day-num { color: #888; }
.cal-day-num {
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 3px;
}
.cal-cell--today .cal-day-num {
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
}
.cal-dots { display: flex; gap: 2px; flex-wrap: wrap; }
.cal-dot {
    width: 6px; height: 6px; border-radius: 50%; display: inline-block;
}
.cal-dot--event      { background: var(--color-primary); }
.cal-dot--incomplete { background: var(--color-warning); }
.cal-dot--prep       { background: var(--color-success); }

.cal-legend {
    display: flex; gap: 12px; flex-wrap: wrap;
    padding: 8px 16px;
    font-size: 12px; color: var(--color-text-sub);
}
.cal-legend span { display: flex; align-items: center; gap: 4px; }

/* ===== ポイントタブ (T063-T069) ===== */
.pt-child-header {
    display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.pt-name    { font-weight: 700; font-size: 15px; }
.pt-balance { font-size: 24px; font-weight: 800; color: var(--color-primary); }
.pt-sub-info { margin-left: auto; text-align: right; }
.pt-actions { display: flex; gap: 8px; margin-top: 10px; }
.pt-actions .btn { flex: 1; }

.pt-history { border-top: 1px solid var(--color-border); margin-top: 8px; padding-top: 8px; }
.pt-tx-row {
    display: flex; align-items: center; gap: 6px;
    padding: 5px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 13px;
}
.pt-tx-row:last-child { border-bottom: none; }
.pt-tx-label  { font-weight: 600; flex-shrink: 0; }
.pt-tx-note   { color: var(--color-text-sub); flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pt-tx-amount { font-weight: 700; flex-shrink: 0; }
.pt-tx--plus  { color: var(--color-success); }
.pt-tx--minus { color: var(--color-danger); }

/* ===== 共通ルーティン予定 ===== */
.rc-routine-row  { align-items: flex-start; padding: 10px 0; }
.rc-cat-name     { font-weight: 600; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.rc-wd-chips     { display: flex; gap: 4px; flex-wrap: wrap; }
.rc-wd-chip      { display: inline-flex; align-items: center; justify-content: center;
                   width: 28px; height: 28px; border-radius: 50%; font-size: 12px; font-weight: 600; }
.rc-wd-chip--on  { background: var(--color-primary); color: #fff; }
.rc-wd-chip--off { background: var(--color-border); color: var(--color-text-sub); }

/* ===== Google Calendar ===== */
.gc-status-row   { display: flex; align-items: center; gap: 10px; }
.gc-calendar-id  { font-size: 13px; color: var(--color-text-sub); word-break: break-all; }
.gc-config-warn  { color: var(--color-danger); font-size: 14px; }
.gc-event-row    { align-items: flex-start; padding: 10px 0; }

/* ===== T094: アクセシビリティ調整 ===== */
/* タブアイテム最小タップ領域 44px */
.tab-item { min-height: 44px; }
/* btn-sm も最小44px高さを確保 */
.btn-sm   { min-height: 36px; }
/* list-item タップ領域 */
.list-item { min-height: 44px; }
/* フォーカスリング */
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
/* iOS Safari スクロールバウンス防止 */
.page { -webkit-overflow-scrolling: touch; }
/* 子供画面端末管理の登録URL折り返し */
.dv-url-box { word-break: break-all; font-size: 12px; }

/* ===== 日別詳細 (T044-T050) ===== */
.day-child-selector  { display: flex; gap: 8px; padding: 12px 0; overflow-x: auto; }
.day-child-btn       { padding: 6px 16px; border-radius: 20px; border: 1.5px solid var(--color-border);
                        background: #fff; cursor: pointer; font-size: 14px; white-space: nowrap; }
.day-child-btn--active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.day-mode-bar        { display: flex; gap: 8px; padding: 8px 0 4px; border-bottom: 1px solid var(--color-border); margin-bottom: 8px; }

.day-event-row       { padding: 10px 0; border-bottom: 1px solid var(--color-border); }
.day-event-head      { display: flex; align-items: center; gap: 8px; }
.day-event-icon      { font-size: 18px; }
.day-event-name      { font-weight: 600; flex: 1; }
.day-event-lock      { font-size: 13px; }
.day-event-del       { margin-left: auto; }
.day-options         { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; margin-left: 26px; }
.day-opt-chip        { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px;
                        border-radius: 12px; font-size: 12px; cursor: pointer; border: 1.5px solid var(--color-border); }
.day-opt-chip--on    { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.day-opt-chip--off   { background: #fff; color: var(--color-text-sub); }

.day-check-row       { display: flex; align-items: center; gap: 8px; padding: 8px 0;
                        border-bottom: 1px solid var(--color-border); min-height: 44px; }
.day-check-row--excluded { opacity: 0.55; }
.day-check-status    { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
                        border-radius: 50%; font-size: 13px; flex-shrink: 0; }
.day-status--done    { background: var(--color-success); color: #fff; }
.day-status--pending { background: var(--color-border); color: var(--color-text-sub); }
.day-status--skip    { background: #f0f0f0; color: #999; }
.day-check-name      { flex: 1; font-size: 14px; }
.day-check-actions   { display: flex; gap: 4px; flex-shrink: 0; }
.day-badge           { font-size: 10px; padding: 1px 6px; border-radius: 8px; }
.day-badge--added    { background: #e8f4ff; color: #1a70c8; }
.day-excluded-header { font-size: 12px; color: var(--color-text-sub); margin: 8px 0 4px; }

.btn-danger:hover    { opacity: 0.85; }
