#editDocDialog {
	.edit-document-form {
		display: flex;
		flex-direction: row;
		gap: 15px;
		width: 900px;
		margin: 25px 0;

		.field {
			flex: 1;
			display: flex;
			flex-direction: column;

			&:first-child {
				flex: none;
				width: fit-content;
			}

			label {
				margin: 0;
				margin-bottom: 2px;
				font-size: 11px;
				font-weight: 500;
			}
		}
	}

	input[type="text"],
	input[type="date"] {
		padding: 10px;
		border: 2px solid var(--TWMidnight);
		border-radius: 10px;
		box-shadow: 4px 4px 4px 0px #00000020;
		cursor: pointer;
		background-color: var(--IceWhite);
		align-items: center;
		width: 100%;
		height: 42px;
		max-height: 42px;
		box-sizing: border-box;
		font-size: 14px;
		font-family: "Poppins", sans-serif;
		color: var(--TWMidnight);
	}

	input[type="date"] {
		max-width: 180px;
		flex: none;
	}

	li[data-value="9999"] {
		display: none;
	}
}
