﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    font-size:12px;
}
a{text-decoration:none;}
input, select,td,th {
    padding: 5px;
}
.line1 {
    float: left;
    width: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
}

.user-window-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    cursor: pointer;
}

.down-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Optional: Rotate arrow up when active/open */
.user-window-trigger.active .down-arrow {
    transform: rotate(-135deg);
}
.no_data {
    font-size: 12px;
    color: Maroon;
    font-style: italic;
    text-align: center;
    height: 50px;
    vertical-align: middle
}
.modal {
    /*  display: none; Hidden by default*/
    opacity: 1.0;
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 30vh; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    border-radius: 15px;
    margin: auto;
    padding: 20px;
    text-align: center;
    border: 1px solid #888;
    width: 100px;
}