body {
    font-family: Arial, sans-serif;
    text-align: center;
    padding-top: 100px;
    background-color: #fff;
}

button {
    padding: 8px 16px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color:#dc3545;
    color: white;
    border: none;
    border-radius: 8px;
}
a.button{
    color: #fff;
    background-color: #DC3545;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
    padding: 12px 20px;
    text-decoration: none;
    margin-top: 15px;
    display: inline-block;
}
.main-content {
    margin-bottom: 100px;
}
svg{
    display: none;
}
button:hover {
    background-color: #2779bd;
}
nav {
    margin-top: 25px;
    text-align: center;
}

nav .flex.justify-between span,nav .flex.justify-between a {
    margin: 40px;
    text-decoration: none;
    color: #DC3545;
}

nav p.text-sm {
    margin: 15px 0px;
    font-size: 21px;
}

nav span.relative a,nav span.relative span {
    padding: 5px;
    color: #DC3545;
}

nav span.relative span {
    color: black;
    font-weight: bold;
}
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.popup-content {
    position: relative;
    margin: 1% auto;
    background: #fff;
    width: max-content;
    max-height: 90vh;
    overflow-y: auto;
}
.popup-header h3 {
    margin: 0px;
}
.popup-header,.popup-main,.popup-footer {
    padding: 15px 30px;
    border-bottom: 1px #ccc solid;
}
.close-popup {
    float: right;
    cursor: pointer;
    font-size: 20px;
}
.alert.alert-success {
    color: green;
    font-weight: bold;
    font-size: 25px;
}
input:disabled {
    color: #ccc;
}