.community-suggest {
    text-align: center;
    padding: 24px;
}

.community-suggest-form {
    max-width: 720px;
    margin: 0 auto;
    text-align: left;
}

.community-suggest-pick {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-end;
    margin-bottom: 20px;
}

.community-suggest-pick label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8b98a5;
}

.community-suggest-pick select,
.community-suggest-name input {
    min-width: 180px;
    padding: 8px 10px;
    border: 1px solid #2a3440;
    background: #12171c;
    color: #e8ecef;
    border-radius: 2px;
}

.community-suggest-slots {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0 22px;
}

.community-suggest-slot {
    position: relative;
    border: 1px solid #2a3440;
    background: #151b21;
    border-radius: 4px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 8px;
}

.community-suggest-slot img {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    border: 1px solid #3d4a57;
}

.community-suggest-slot span {
    font-size: 12px;
    color: #d0d7de;
    text-align: center;
}

.community-suggest-empty {
    color: #6b7785;
    font-size: 13px;
}

.community-suggest-rm {
    position: absolute;
    top: 6px;
    right: 6px;
    border: none;
    background: #e0043f;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 2px;
    line-height: 22px;
    padding: 0;
    cursor: pointer;
}

.community-suggest-name {
    margin-bottom: 16px;
}

.community-suggest-name label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    color: #8b98a5;
}

.community-suggest-name input {
    width: 100%;
    max-width: 420px;
}

.community-suggest-error {
    color: #ff6b6b !important;
    margin: 10px 0;
}

.community-suggest-ok {
    color: #f99b1d;
    margin: 24px 0;
}

.community-suggest-back {
    margin-left: 12px;
    color: #8b98a5;
}

.community-builds {
    margin-top: 8px;
}

.community-builds-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.community-builds-title {
    margin: 0;
    font-size: 16px;
    color: #e8ecef;
}

.community-builds-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.community-build-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    padding: 12px;
    border: 1px solid #2a3440;
    background: #12171c;
    border-radius: 4px;
}

.community-build-name {
    min-width: 140px;
    font-weight: 700;
    color: #f99b1d;
}

.community-build-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.community-build-items img {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    border: 1px solid #3d4a57;
}

.community-build-date {
    margin-left: auto;
    font-size: 12px;
    color: #8b98a5;
}

@media (max-width: 640px) {
    .community-suggest-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
