/* ============================================================
   CarZoon — Save as Draft (localStorage)
   Matches carzoon-dvla.css palette: navy #0d1f3c/#0f2744,
   blue accent #1e4fc2, card radius 16px.
   ============================================================ */

.cz-draft-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #eef3ff;
    border: 1px solid #d3e0fb;
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 16px;
}
.cz-draft-banner__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #1e4fc2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cz-draft-banner__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.cz-draft-banner__text strong {
    font-size: 14px;
    color: #0d1f3c;
    font-weight: 800;
}
.cz-draft-banner__text span {
    font-size: 12.5px;
    color: #5b6b85;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.cz-draft-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}
.cz-draft-resume-btn {
    background: #1e4fc2;
    color: #fff !important;
    border: none;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.cz-draft-discard-btn {
    background: none;
    color: #5b6b85;
    border: 1px solid #d3e0fb;
    font-size: 12.5px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}
.cz-draft-discard-btn:hover { background: #fdecea; border-color: #f5c6c0; color: #c0392b; }

.cz-draft-photo-note {
    font-size: 12.5px;
    color: #8a6300;
    background: #fff8e6;
    border: 1px solid #f2e2a8;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 12px;
}

@media (max-width: 480px) {
    .cz-draft-banner { flex-wrap: wrap; }
    .cz-draft-banner__actions { width: 100%; }
    .cz-draft-resume-btn, .cz-draft-discard-btn { flex: 1; text-align: center; }
}
