.page_contents{
    padding-left: 20px;
    padding-right: 20px;
}

.permissions-edit{
    font-size: 13px;
}
.permissions-edit h5{
    font-size: 15px;
}

.edit-table td{
    width: 25%;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}
.edit-button {
    background-color:#44c767;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    border:1px solid #18ab29;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:12px;
    padding:3px 10px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
    margin: 2px;
}
.edit-button:hover {
    background-color:#5cbf2a;
}
.edit-button:active {
    position:relative;
    top:1px;
}

.delete-button {
    background-color:#e60000;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    border:1px solid #18ab29;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:12px;
    padding:3px 10px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
    margin: 2px;
}
.delete-button:hover {
    background-color:#b30000;
}
.delete-button:active {
    position:relative;
    top:1px;
}

.menu-user h3{
    float: left;
}

.hidden{
    display: none;
}


.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin-left: 45%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}
/*
table td.description-field{
    max-width: 300px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}*/

body table tr.approved-row{
    background: #b5e7a0;
}

body table tr.closed-row{
    background: #eca1a6;
}

body table tr.paid-row{
    background: #b2b2b2;
}

* {
    font-size: 12px;
}

nav *{
    font-size: 16px;
}

.data-table td{
    overflow: hidden; 
    text-overflow: ellipsis; 
    word-wrap: break-word;
    word-break: break-word;
}
.data-table th{
    overflow: hidden; 
    text-overflow: ellipsis; 
    word-wrap: break-word;
}
