﻿.form-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    position: relative;
}

.date-picker-wrapper {
    position: relative;
    width: calc(50% - 10px);
	top: 0px;
	left: 0px;
}

.date-picker-wrapper input[type=text] {
    width: 100%;
    padding: 10px;
    padding-right: 30px; /* Add space for the icon */
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
}

.calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th,
td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    font-weight: bold;
    color: #999;
}

td input[type=radio] {
    margin: 0 auto;
    display: block;
}


