/* css/admin-styles.css */

/* Apply Manrope font to the admin area */
body {
    font-family: 'Manrope', sans-serif;
}

.setting-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-family: 'Manrope', sans-serif;
}
.setting-row label {
    width: 150px;
    margin-right: 10px;
    font-weight: bold;
}
.setting-row input[type="text"],
.setting-row select {
    width: 250px;
    margin-right: 10px;
    height: 36px;
    padding: 5px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}
.setting-row input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
}
.setting-row .submit-button {
    margin-left: auto;
    height: 36px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}
.setting-row input[readonly] {
    background-color: #f1f1f1;
    color: #555;
}
#scraper-result, #last-db-created {
    margin-top: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    color: #484848;
}
/* Style the buttons */
.button-primary.submit-button {
    height: 36px;
    padding: 0 20px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.text-wrapper {
    max-width: 475px;
    word-wrap: break-word;
}

@media (max-width: 600px) {
    .text-wrapper {
        max-width: 100%;
    }
}
