.pds-button {
    font-size: 14px;
}

.pds-form-row {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pds-label {
    display: block;
    margin-bottom: 0;
    font-weight: bold;
    color: #555;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
}

.pds-input {
    flex-grow: 1;
    width: calc(100% - 100px);
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.4;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pds-input:hover {
    border-color: #999;
}

.pds-input:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.pds-button-container {
    text-align: right;
    margin-top: 10px;
}

.pds-button {
    display: block;
    width: 100%;
    background-color: #f1f1f3;
    color: #555;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    line-height: 18.1875px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.pds-button:not([disabled]) {
    background-color: #f1f1f3;
    color: #555;
    border-color: #ccc;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pds-button:not([disabled]):hover {
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
}

.pds-button[disabled] {
    background-color: #f5f5f5;
    color: #a0a0a0;
    cursor: not-allowed;
    box-shadow: none;
}