.license-plate {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #111111;
    border-radius: 4px;
    overflow: hidden;
    box-sizing: border-box;
    vertical-align: middle;
    line-height: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.license-plate--sm {
    min-width: 108px;
    height: 24px;
}

.license-plate--md {
    min-width: 140px;
    height: 30px;
}

.license-plate--lg {
    min-width: 176px;
    height: 36px;
}

.license-plate__stripe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 15%;
    min-width: 15px;
    background: linear-gradient(180deg, #2b5fc7 0%, #1a3a8f 100%);
    color: #ffffff;
    flex-shrink: 0;
}

.license-plate__stripe-code {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    /*writing-mode: vertical-rl;*/
    /*transform: rotate(180deg);*/
    font-size: 8px;
}

.license-plate--md .license-plate__stripe-code {
    font-size: 9px;
}

.license-plate--lg .license-plate__stripe-code {
    font-size: 10px;
}

.license-plate__text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    color: #111111;
    font-family: 'Arial Black', 'Arial Bold', Arial, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: inherit;
}

.license-plate--sm .license-plate__text {
    font-size: 12px;
}

.license-plate--md .license-plate__text {
    font-size: 16px;
}

.license-plate--lg .license-plate__text {
    font-size: 21px;
}

.license-plate--custom .license-plate__text {
    letter-spacing: 0.12em;
}

.license-plate__input {
    width: 100%;
    min-width: 0;
    border: none;
    outline: none;
    background-color: inherit;
    box-sizing: border-box;
}

.license-plate__input::placeholder {
    color: #999999;
    font-weight: 700;
    opacity: 1;
}

.license-plate--editable {
    cursor: text;
}

.license-plate-wrap {
    display: block;
    margin-top: 4px;
    text-align: center;
}

.license-plate-wrap--left {
    text-align: left;
}
.license-plate-wrap--right {
    text-align: right;
}

.plates-row-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.plates-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 4px;
    border-bottom: 1px solid #3a3a3a;
}

.plates-row:last-child {
    border-bottom: none;
}

.plates-row__name {
    flex: 1;
    min-width: 80px;
    font-size: 14px;
    line-height: 1.3;
}

.plates-row__badge {
    display: inline-block;
    margin-left: 4px;
    font-size: 11px;
    color: #fcd330;
}

.plates-row__plate {
    flex-shrink: 0;
}

.plates-row__meta {
    flex: 1;
    font-size: 12px;
    color: #aaa;
}

.plates-row__action {
    flex-shrink: 0;
    font-size: 12px !important;
    padding: 2px 10px !important;
    white-space: nowrap;
}

.plates-row__empty {
    font-size: 12px;
    color: #fcd330;
    font-style: italic;
}
