body {
    font-family: sans-serif;
    background-color: #eeeeee;
    letter-spacing: 2px;
}

.top-container {
    display: flex;
}

.Logo {
    width: 100px;
}

.file-upload {
    background-color: #ffffff;
    width: 35%;
    margin: 0 auto;
    margin-right: 30.5%;
    padding: 2%;
}

.file-upload-btn {
    width: 100%;
    margin: 0;
    color: #fff;
    background: #1FB264;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.file-upload-btn:hover {
    background: #1AA059;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.file-upload-btn:active {
    border: 0;
    transition: all .2s ease;
}

.file-upload-input {
    position: absolute;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    outline: none;
    opacity: 0;
    cursor: pointer;
}

.image-upload-wrap {
    margin-top: 20px;
    border: 4px dashed #1FB264;
    position: relative;
}

.image-dropping,
.image-upload-wrap:hover {
    background-color: #1FB264;
    border: 4px dashed #ffffff;
}

.drag-text {
    text-align: center;
}

.drag-text h3 {
    font-weight: 100;
    text-transform: uppercase;
    color: #15824B;
    padding: 60px 0;
}

.file-upload-content {
    display: none;
    text-align: center;
}

.file-upload-image {
    max-height: 200px;
    max-width: 200px;
    margin: auto;
    padding: 20px;
}

.terms {
    text-align: left;
    padding: 10px;
}

#terms-checkbox {
    cursor: pointer;
}

.image-title-wrap {
    padding: 0 15px 15px 15px;
    color: #222;
    display: flex;
}

.country-selector {
    flex: 1;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    margin-left: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: 'border-color' .15s ease-in-out, 'box-shadow' .15s ease-in-out;
}

.request-alpr {
    flex: 1;
    width: 200px;
    height: 41px;
    margin: 0;
    margin-right: 0.5rem;
    color: #fff;
    background: #15824B;
    border: none;
    padding: 10px;
    border-radius: 4px;
    border-bottom: 4px solid #15824B;
    transition: all .2s ease;
    outline: none;
    text-transform: uppercase;
    font-weight: 700;
}

.request-alpr:disabled {
    border: 1px solid #999999;
    background-color: #cccccc;
    color: #666666;
}

.request-alpr:hover:enabled {
    background: #15824B;
    color: #ffffff;
    transition: all .2s ease;
    cursor: pointer;
}

.request-alpr:active:enabled {
    border: 0;
    transition: all .2s ease;
}

.annotated-image {
    max-width: 500px;
    max-height: 500px;
}

#myCanvas {
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.display-area {
    display: flex;
    padding: 20px 0px 0px;
}

.display-area div {
    padding: 10px 10px 10px;
}

.left-display {
    flex: 1;
}

.center-display {
    align-items: center;
    flex: 3;
    border: 1px #ccc solid;
    border-radius: 0.25rem;
}

.right-display {
    flex: 1;
}