/**
 * This file is part of the Laser package.
 *
 * (c) Ondřej Záruba <info@zaruba-ondrej.cz>
 *
 * For the full copyright and license information, please view the license.md
 * file that was distributed with this source code.
 */

.find_replace-container {
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
}

.find_replace-text-box, .find_replace-input-form {
    display: inline-block;
    width: 45%;
    box-sizing: border-box;
    vertical-align: top;
}

.find_replace-text-box {
    border: 1px solid #000000;
    padding: 10px;
    font-family: "Courier New", Courier, monospace;
    font-size: 14px;
}

.find_replace-text-box pre {
    white-space: pre-wrap;
}

.find_replace-input-form {
    margin-left: 5%;
    background-color: #eeeeee;
    padding: 10px;
    box-sizing: border-box;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.find_replace-input-form input, label {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.find_replace-input-form input {
    padding: 5px 10px;
}

.find_replace-input-form label {
    margin: 10px 0 5px 0;
}

.find_replace-replace-button, .find_replace-reset-button {
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #000000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: #000000;
    margin-top: 15px;
}

.find_replace-reset-button {
    margin-left: 15px;
}

.find_replace-reset-button-disabled {
    opacity: 0.1;
}

.find_replace-success-message {
    color: green;
    margin: 20px 0;
}