﻿input.editable {
    position: relative;
    display: inline-block;
    width: 180px;
    height: 100%;
}

    input.editable:hover {
        border-radius: 1px;
    }

/*CREATE FORM STYLES*/

.createUserTableWrapper {
    border-collapse: collapse;
    width: 100%;
}

.createUserTableWrapper table {
    margin-bottom:10px;
}

    .createUserTableWrapper td, .createUserTableWrapper th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .createUserTableWrapper th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: left;
        background-color: #4CAF50;
        color: white;
    }
    
