/* Base style for input */
input[type="text"] {
    font-size: 12px; /* Adjust font size as needed */
    padding: 6px; /* Reduced padding for a more compact look */
    margin: 3px 0; /* Reduced space between inputs */
    border: 1px solid #ccc; /* Border color */
    border-radius: 4px; /* Rounded corners */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    transition: border-color 0.3s, box-shadow 0.3s; /* Smooth transition for focus/hover effects */
    outline: none; /* Remove the default focus outline */
    resize: both; /* Make the input resizable */
}

/* Hover state */
input[type="text"]:hover {
    border-color: #ff00ff; /* Change border color when hovered */
}

/* Focus state */
input[type="text"]:focus {
    border-color: #ff0000; /* Border color on focus */
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add glow effect on focus */
}


 body {
            font-family: Arial, sans-serif;
            font-size: 10px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        table, th, td {
            border: 1px solid black;
        }
        th, td {
            padding: 5px;
            text-align: left;
        }
        .search-input {
            margin-bottom: 5px;
        }
        /* Reset some basic elements */
body, h1, h2, h3, p, form, input, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  /* Other styles for the header cells */
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.2;
    margin: 0;
    padding: 5px;
    background: #f4f4f4;
    color: #333;
}

/* Container for page content */
.container {
    width: 95%;
    margin: auto;
    overflow: hidden;
    padding: 5px;
}
.footer {
    margin-top: auto;
    width: 100%;
    font-size: 14px;
    text-align: center;
    padding: 10px 0;
    background-color: #f0f0f0;
    color: #333;
}


/* Navigation bar */
.navbar {
    background-color: #333;
    color: #ffffff;
    padding: 10px 0;
    text-align: center;
}

.navbar a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    display: inline-block;
}

.navbar a:hover {
    background-color: #ddd;
    color: #333;
}

/* Headings */
h1, h2, h3 {
    margin-bottom: 10px;
}

/* Buttons */
.button, button {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 6px 6px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 10px;
}

.button:hover, button:hover {
    background-color: #0056b3;
}

/* Forms */
form {
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
}

form label {
    display: block;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form select {
    width: 250px;
    padding: 5px;
    margin-bottom: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.adjustable {
    resize: both;
}

form input[type="submit"] {
    cursor: pointer;
}

/* Table */
table {
    width: 100%;
    margin-top: 5px;
    
}

table, th, td {
    border: 1px solid #ccc;
}

th, td {
    text-align: left;
    padding: 5px;
}

th {
    background-color: #444444;
    color: whitesmoke;
}

tr:nth-child(even) {
    background-color: #f0f0f0;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.centered-text {
    text-align: center;
}

a {
    color: #0055ff; /* Link color */
    text-decoration: none; /* Remove underline */
}

a:hover {
    text-decoration: underline; /* Underline on hover */
}

.line {
        border-top: 3px solid black; /* 3 pixels thick, solid black */
        width: 100%; /* Full width of the screen */
        margin-top: 1px; /* Optional: Add some spacing from the top */
        margin-bottom: 10px;
    }