body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}

/* Captcha Style */
.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    
    /* REFINED: Matches the screenshot (Times New Roman, Normal Weight, Tight Spacing) */
    font-family: 'Times New Roman', Times, serif;
    font-style: italic; 
    font-weight: normal; /* Definitely not bold */
    font-size: 24px;     /* Slightly larger to match the visual weight */
    letter-spacing: 1px; /* Reduced from 4px to 1px */
    color: #000;
}

/* Form Styles */
.form-label {
    font-family: sans-serif;
    font-size: 12px;
    color: #333;
}

.inputField {
    font-family: sans-serif;
    font-size: 12px;
    width: 85px;
    border: 1px solid #999;
}

.form-btn {
    font-family: Arial;
    font-size: 11px;
    height: 22px;
    width: 60px;
    margin-right: 2px; /* Small gap between buttons */
    cursor: pointer;
}

.forgot-pass {
    font-family: Arial;
    font-size: 11px;
    color: blue;
    text-decoration: underline;
}
.forgot-pass:hover {
    text-decoration: none;
}

/* Typography */
h3, h5 {
    /* Margins handled inline */
}
/* BACKLOG.HTML*/

/* --- Backlog Page Styles --- */

.backlog-body {
    background-color: #fce9c5;
    margin: 10px; 
    margin-top: 5px; 
}

.sort-table {
    background-color: white;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 15px; /* Increased font size */
    border: 1px solid black;
}

.sort-table th {
    padding: 4px;
    text-align: left;
    border: 1px solid black;
}

.sort-table td {
    padding: 4px;
    border: 1px solid black;
    text-align: left;
}

/* Specific styling for the Webkiosk link */
.webkiosk-link {
    font-family: Verdana, sans-serif;
    font-size: 14px; /* Increased font size */
    color: red;
    text-decoration: underline;
    text-decoration-color: blue;
}
.webkiosk-link:hover {
    text-decoration: none;
}