body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
.container {
    max-width: 800px;
    margin: auto;
}
input[type="text"], button {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
input[type="text"] {
    width: calc(100% - 32px);
}
input.small-input {
    width: calc(50% - 32px);
    display: inline-block;
}
button {
    background-color: #000;
    color: white;
    cursor: pointer;
	border-radius: 10px;
	text-transform: uppercase;
    font-size: 16px;
    padding: 12px 20px 12px;
    font-weight: 700;	
	font-family: Arial, sans-serif;
}
button:hover {
    background-color: gray;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
table, th, td {
    border: 1px solid #ddd;
}
th, td {
    padding: 10px;
    text-align: left;
}
th {
    background-color: #f4f4f4;
}
.no-data {
    text-align: center;
    margin-top: 20px;
    color: #888;
}
.input-group {
    display: flex;
    justify-content: space-between;
	margin-top: 10px;
}