/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 100%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

#perspective-modal {
    font-size: 40px;
    top: 100px;
    left: 300px;
}

#perspective-header {
    font-size: 50px;
    font-weight: bold;
}

#perspective-input-handle {
    font-size: 70px;
    border: 10px solid #007bff; /* A blue border on focus */
}

#perspective-submit {
    font-size: 70px;
    background-color: lightgray;
    border: 10px solid black; /* A blue border on focus */
}

.modal-body {
    font-size: 30px;
}
