﻿@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');

body {
    background: #fff;
    font-family: 'Century Gothic';
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 350px;
    height: 753px;
    background: #fff;
    border-radius: 40px;
    margin-top: 10px;
  
}

span.heading {
    font-size: 16px;
    color: #252C6D;
    font-weight: 900 !important;
    letter-spacing: 0px;
    font-family: 'Century Gothic';
}

h6 {
    background-color: #252C6D;
    padding: 5px;
    color: #0077b3 !important;
    margin-top: 10px;
    font-family: 'Century Gothic';
    font-size: 15px;
}

td.text-white.p-2.text-end {
    font-size: 12px;
    font-family: 'Century Gothic';
    width: 123px;
    background-color: whitesmoke;    
    font-weight: 900;
    color:gray !important;
}

td.p-2.text-end {
    font-size: 12px;
    font-family: 'Century Gothic';
}

.form-label {
    font-family: 'Century Gothic';
    font-size: 14px;    
}

#text {
    margin-top: 5px;
}


input.btn.btn-default {
    width: 130px;
    border: 1px solid gray;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 788px;
    width: 18%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 2px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center; /* Center the content */
}

#captureButton, #cancelButton {
    display: inline-block;
    width: 45%;
    padding: 10px;
    margin: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#captureButton {
    background-color: #007bff;
    color: #fff;
}

    #captureButton:hover {
        background-color: #0056b3;
    }

#cancelButton {
    background-color: #dc3545;
    color: #fff;
}

    #cancelButton:hover {
        background-color: #bb2c38;
    }

button.btn.btn-info.form-control {
    background: #252C6D;
}
