.guest-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    padding: 14px 17px;
    border: 1px solid #c7ccd3;
    border-radius: 14px;
    background: #ffffff;
    box-shadow:
        0 1px 2px rgba(18, 24, 32, 0.03),
        0 7px 20px rgba(18, 24, 32, 0.04);
}

.guest-preview-copy {
    min-width: 0;
}

.guest-preview-title {
    color: #20242a;
    font-size: 13px;
    font-weight: 850;
}

.guest-preview-description {
    margin-top: 2px;
    color: #69717d;
    font-size: 11px;
}

.guest-preview-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
}

.guest-preview-label {
    color: #69717d;
    font-size: 11px;
    font-weight: 800;
}

.guest-preview-select {
    min-width: 240px;
    min-height: 40px;
    padding: 8px 34px 8px 11px;
    border: 1px solid #d2d6dc;
    border-radius: 10px;
    outline: none;
    background: #ffffff;
    color: #20242a;
    font-size: 12px;
    font-weight: 750;
}

.guest-preview-select:focus {
    border-color: #8e959f;
    box-shadow:
        0 0 0 3px
        rgba(32, 36, 42, 0.07);
}

.guest-preview-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 13px;
    border: 1px solid #20242a;
    border-radius: 10px;
    background: #20242a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
}

.guest-preview-button:hover {
    background: #101216;
}

@media (max-width: 900px) {
    .guest-preview {
        align-items: stretch;
        flex-direction: column;
    }

    .guest-preview-controls {
        align-items: stretch;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .guest-preview-label {
        width: 100%;
    }

    .guest-preview-select {
        flex: 1 1 220px;
        min-width: 0;
    }

    .guest-preview-button {
        flex: 1;
    }
}
