body {
    font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif;
    margin: 0;
    text-align: center;
    min-width: 900px;
}

.header {
	margin: 0;
	padding: 0;
	background-color: #1f2532; /* Sexton blue */
    display: flex;
    justify-content: space-between;
    display: table;
    width: 100%;
    /* border:1px solid green; */
}

.widthHome {
    width: 33%;
    min-width: 300px;
    display: table-cell; 
    vertical-align: bottom; 
    padding: 10px;
    /* border:1px solid green; */
}

.column {
    width: 33%;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: space-evenly;

    /* border:1px solid green; */
}

.cameraCard {
    height: 150px;
    max-width: 125px;
    min-width: 125px;
    margin: 10px;
    flex: 1 0 25%;
    background-color: #b5b6c7;

    /* border: 1px solid green; */
}

.image {
    width: 100%;
    height: 300px;
    padding-top: 100px;
}

.content {
    margin: 0;
	padding: 5px 0 5px 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100%;

    /* border: 1px solid green; */
}

table {
    width:100%;
    margin: 10px;
}

th {
    width: 25%;
    /* border:1px solid green; */
}

input {
    background-color: #b2b3b8;
    padding: 8px 16px;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

#modal-backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.85);
}

#add-cam-modal, #edit-cam-modal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    /* overflow: scroll; */
}

.hidden {
display: none;
}

.modal-dialog {
    width: auto;
    max-width: 600px;
    min-width: 350px;
    min-height: 300px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 15px;
}

.modal-header {
    position: relative;
    padding: 10px 20px;
}

.modal-header h3 {
    margin: 0;
    font-size: 28px;
}

#modal-close {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.modal-body {
    padding: 20px;
}

.post-input-element {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 10px 0;
}

.post-input-element > label {
    font-weight: 600;
    flex: 1 100px;
    margin-right: 10px;
}

.post-input-element input {
    flex: 6 150px;
    padding: 8px;
    font-size: 20px;
    border: 1px solid #aaa;
}

.post-fieldset {
    flex: 1 100%;
    border: 1px solid #ababab;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 20px 10px;
}

#modal-cancel,
#modal-accept {
    margin-right: 20px;
}

#modal-cancel {
    color: #333;
    background-color: #fff;
}

#modal-cancel:hover {
    background-color: #eee;
}

.action-button {
    font-size: 20px;
    color: white;
    padding: 10px;
    background-color: #000;
    border: 1px solid #ababab;
    border-radius: 5px;
    font-weight: lighter;
    cursor: pointer;
}

.delete-button {
    background-color: rgb(194, 26, 26) !important;
    border: 1px solid #800b0b !important;
    color: rgb(0, 0, 0) !important;
}
