* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
    color: #333;
}

.container {
    margin: 0 auto;
    background: white;
    border-radius: 0;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


.header {
    text-align: center;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 5px;
        font-weight: 500;
    }

    .form-group input {
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

.btn-submit {
    padding: 8px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

    .btn-submit:hover {
        background-color: #0056b3;
    }


#reviewGrid .k-grid-content {
    height: calc(100vh - 310px);
}

#grdSetItems .k-grid-content {
    height: calc(100vh - 340px);
}

input[type="checkbox"] {
    cursor: pointer;
}
