/* Form Container */
#data-entry-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: ;
    border: 1px solid #444;
    border-radius: 8px;
}

/* Form Rows */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Groups */
.form-group {
    flex: 1 1 calc(50% - 10px);
    min-width: 200px;
}

/* Labels */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: white;
}

/* Input Fields */
.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #444;
    border-radius: 4px;
    background-color: green; /* Green background */
    color: white; /* White text */
}

/* Placeholder Text Color */
#data-entry-form input::placeholder {
    color: white; /* White placeholder text */
    opacity: 1;
}

/* Submit Button and Status Container */
.submit-status-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

/* Submit Button */
#data-entry-form input[type="submit"] {
    flex: 1;
    padding: 15px;
    background-color: #0073e6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

#data-entry-form input[type="submit"]:hover {
    background-color: #005bb5;
}

/* Status Indicator */
#status-indicator {
    flex: 1;
    padding: 15px;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    text-align: center;
    cursor: not-allowed;
}

#status-indicator.over {
    background-color: green; /* Green for OVER */
}

#status-indicator.short {
    background-color: red; /* Red for SHORT */
}

#status-indicator.balanced {
    background-color: blue; /* Blue for BALANCED */
}


/* Table Styling */
.table-responsive {
    overflow-x: auto;
    margin-top: 20px;
}

.data-entries-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #333;
    color: white;
}

.data-entries-table th,
.data-entries-table td {
    padding: 12px;
    border: 1px solid #444;
    text-align: left;
}

.data-entries-table th {
    background-color: #222;
    font-weight: bold;
}

.data-entries-table tr:nth-child(even) {
    background-color: #444;
}

.data-entries-table tr:hover {
    background-color: #555;
}