/*
 * Basic styling for the Tech Reviews & Gadgets plugin.
 *
 * This stylesheet adds minimal structure and spacing to the forms and
 * tables generated by the plugin shortcodes. It avoids clashing with
 * theme styles by using relatively specific selectors and keeps the
 * design simple and neutral.
 */

.lbe-form, .ai-tool-finder-form, .device-comparison-form {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    max-width: 600px;
}

.lbe-form .lbe-field,
.ai-tool-finder-form .ai-field,
.device-comparison-form .dct-field {
    margin-bottom: 0.75em;
}

.lbe-form label,
.ai-tool-finder-form label,
.device-comparison-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25em;
}

.lbe-form input[type="number"],
.lbe-form select,
.ai-tool-finder-form select,
.device-comparison-form select {
    width: 100%;
    padding: 0.4em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.lbe-form button,
.ai-tool-finder-form button,
.device-comparison-form button {
    padding: 0.5em 1em;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.lbe-form button:hover,
.ai-tool-finder-form button:hover,
.device-comparison-form button:hover {
    background-color: #005a87;
}

.lbe-result, .device-comparison-result, .ai-tool-results {
    margin-top: 1em;
    border: 1px solid #ddd;
    padding: 1em;
    background-color: #fafafa;
}

.device-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
}

.device-comparison-table th,
.device-comparison-table td {
    border: 1px solid #ccc;
    padding: 0.5em;
    text-align: left;
}

.device-comparison-table th {
    background-color: #f0f0f0;
    font-weight: 600;
}