﻿/* Basic modal styling */
.modal {
    display: none; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* semi-transparent backdrop */
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /*
    height: 80%;
    */
}

.close {
    float: right;
    cursor: pointer;
    font-weight: bold;
}
