* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'SemplicitaPro';
    src: url('file:../../static/fonts/SemplicitaPro-Regular.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
}

html, body {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'SemplicitaPro', sans-serif;
}

p{
    font-family: 'SemplicitaPro', sans-serif;
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    min-width: 400px;
}

.title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 5vh;
    font-weight: 600;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.btn {
    padding: 12px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn:active {
    background-color: #388e3c;
    transform: translateY(0);
}

#startupPopup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #333;;
    text-align: center;
}
#editPopup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
#PDFPopup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
}
.popup-content {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    height: auto;
    margin: auto;
    margin-top: 30vh;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#pdf-client-list {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    max-height: 300px; 
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#pdf-client-list li {
    padding: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd; 
}

#pdf-client-list li:nth-child(odd) {
    background-color: #f9f9f9; 
}

#pdf-client-list li:nth-child(even) {
    background-color: #eaeaea; 
}

#pdf-client-list li:hover {
    background-color: #d5d5d5;
    cursor: pointer;
}

#pdf-client-list input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); 
}

#fileInput{
    display: none;
}