.competition-rename-trigger {
    min-height: 38px !important;
    padding: 0 12px !important;
    gap: 7px;
    border-color: rgba(111, 167, 244, .24) !important;
    background: rgba(40, 103, 188, .08) !important;
    color: #a9cdfd !important;
    white-space: nowrap;
}

.competition-rename-trigger:hover {
    border-color: rgba(111, 167, 244, .52) !important;
    background: rgba(40, 103, 188, .18) !important;
    color: #eef6ff !important;
}

.competition-rename-trigger svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.competition-rename-dialog {
    width: min(510px, calc(100vw - 24px));
    max-width: 510px;
}

.competition-rename-dialog .prediction-editor-head {
    padding-bottom: 18px;
}

.competition-rename-dialog .prediction-editor-form {
    padding-top: 20px;
}

.competition-rename-dialog .prediction-editor-section {
    padding: 18px;
}

.competition-rename-dialog .prediction-editor-grid {
    grid-template-columns: 1fr;
}

.competition-rename-dialog .prediction-editor-field select,
.competition-rename-dialog .prediction-editor-field input {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    box-sizing: border-box;
    padding: 9px 11px;
    border: 1px solid rgba(136, 177, 224, .20);
    border-radius: 11px;
    outline: none;
    background: #06111e;
    color: #f1f7ff;
    font: inherit;
    font-size: 16px;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    color-scheme: dark;
}

.competition-rename-dialog .prediction-editor-field select:hover,
.competition-rename-dialog .prediction-editor-field input:hover {
    border-color: rgba(136, 177, 224, .34);
}

.competition-rename-dialog .prediction-editor-field select:focus,
.competition-rename-dialog .prediction-editor-field input:focus {
    border-color: #5f9ef2;
    box-shadow: 0 0 0 3px rgba(73, 141, 234, .13);
    background: #081725;
}

.competition-rename-preview {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin: 14px 0 2px;
    padding: 12px 13px;
    border: 1px solid rgba(127, 169, 220, .13);
    border-radius: 13px;
    background: rgba(255, 255, 255, .025);
    color: #91a6bd;
    font-size: .78rem;
}

.competition-rename-preview strong {
    overflow: hidden;
    color: #eaf4ff;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.competition-rename-arrow {
    color: #6ea7ef;
    font-size: 1rem;
}

@media (max-width: 560px) {
    .competition-rename-trigger {
        padding-inline: 10px !important;
    }

    .competition-rename-preview {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .competition-rename-arrow {
        transform: rotate(90deg);
    }
}
