/* Basic body styling */
body { 
    font-family: Arial, sans-serif; 
    padding: 30px; 
    color: #333;
    font-size: 20px;
}

/* Form container layout */
.form-group {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Input styling: bottom line only */
input[type="text"], 
input[type="number"] {
    border: none;
    border-bottom: 2px solid #ccc; /* Only bottom border */
    outline: none;
    background: transparent;
    padding: 8px 5px;
    font-size: 16px;
    transition: border-bottom-color 0.3s ease;
}

/* Change bottom line color on focus to match the button */
input[type="text"]:focus, 
input[type="number"]:focus {
    border-bottom: 2px solid #58A618;
}

/* Button styling using the requested HEX color */
button {
    background-color: rgb(19, 125, 0);
    color: white;
    border: none;
    padding: 10px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

/* Status and Results styling */
.loading {
    color: #666;
    font-style: italic;
    margin-top: 15px;
}

.results-container table {
    border-collapse: collapse;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
}

.results-container th, 
.results-container td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.results-container th {
    background-color: #f9f9f9;
    font-weight: bold;
}
img {
 width: 30px;
}
a {
   text-decoration: none;
   color: #000000;
}
td:has(> div#results){
  display: grid;
  place-items: center;
  height: 100vh;
}