.pdw-label {
    text-align: center;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: bold;
}

.pdw-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.pdw-input-wrap {
    flex-grow: 1;
    position: relative;
    min-width: 0;
}

.pdw-input {
    width: 100%;
    height: 36px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-right: 0;
    box-sizing: border-box;
    border-radius: 4px 0 0 4px;
    outline: none;
}

.pdw-button {
    height: 36px;
    padding: 0 16px;
    font-size: 14px;
    border: 1px solid #ccc;
    background-color: #333;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.pdw-result {
    margin-top: 8px;
    text-align: center;
}

.pdw-loading {
    color: #1e73be;
}

.pdw-error {
    color: #c0392b;
}

/* На узких экранах поле и кнопка становятся в столбик, чтобы не сжиматься */
@media only screen and (max-width: 480px) {
    .pdw-form {
        flex-direction: column;
        align-items: stretch;
    }
    .pdw-input-wrap {
        width: 100%;
    }
    .pdw-input {
        border-right: 1px solid #ccc;
        border-radius: 4px;
    }
    .pdw-button {
        margin-top: 8px;
        border-radius: 4px;
        width: 100%;
    }
}
