/* ui/static/styles.css */
@tailwind base;
@tailwind components;

/* Subtle primary tint: low opacity keeps it "low hue" and subtle */
input[class*="input"], 
textarea[class*="textarea"], 
select[class*="select"], 
.file-input {
  @apply bg-primary/10;  /* Adjust 10 to 5-20 for more/less subtlety */
}

/* Optional: Slightly darker on focus/hover for better UX */
input[class*="input"]:focus, 
textarea[class*="textarea"]:focus {
  @apply bg-primary/20 ring-primary/50;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;  /* Ensures full viewport height minimum */
}

main {  /* Or whatever container holds your dynamic content */
    flex: 1 0 auto;  /* This grows to fill available space, pushing footer down */
}

/* Optional: style your footer */
footer {
    flex-shrink: 0;  /* Prevents shrinking */
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
}

table {
    border-collapse: collapse;  /* Merges adjacent borders */
    width: 100%;                /* Optional: full width */
}
table, th, td {
    border: 1px solid black;    /* Sets all borders: width, style, color */
}
th, td {
    padding: 8px;               /* Optional: space inside cells */
    text-align: left;           /* Optional: alignment */
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Makes items horizontal */
}

.menu li {
    margin: 0; /* Remove any side margins */
}

.menu a {
    display: block;
    padding: 10px 8px; /* Reduce horizontal padding (e.g., from default 20px to 8px) */
    text-decoration: none;
}

