/**
 * @version     3.3.1
 * @package     com_gacalevents
 * @copyright   2021 Glenn Arkell
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 * @author      Glenn Arkell <glenn@glennarkell.com.au>
 */

/* this keeps the label with text floating right */
.front-end-edit label {
    margin-right: 10px;
    display: block;
    float: left;
    text-align: right;
    width: 180px !important;
}

/* this keeps the input fields to the right of the label */
.front-end-edit .controls {
    margin-left: 195px;
}

/* this reduces the space between field and help text */
div.controls > fieldset {
    margin-bottom: 0 !important;
}

@media (max-width: 480px) {
    .front-end-edit label {
        width: 95% !important;
        text-align: left !important;
        margin-left: 10px !important;
    }
    .front-end-edit .controls {
        margin-left: 25px !important;
    }
}
