.sec-staff-list {
	.wrap {
		form {
			margin-bottom: 30px;

			.select-wrap {
				display: inline-flex;
				align-items: center;
				position: relative;
				margin-right: 10px;
				&::after {
					position: absolute;
					right: 15px;
					width: 10px;
					height: 7px;
					background-color: #535353;
					clip-path: polygon(0 0, 100% 0, 50% 100%);
					content: "";
					pointer-events: none;
				}
				select {
					appearance: none;
					min-width: 230px;
					height: 2.8em;
					padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
					border: 1px solid #d0d0d0;
					border-radius: 3px;
					background-color: #fff;
					color: #333;
					font-size: 1em;
					cursor: pointer;
				}
			}

			input {
        min-width: 230px;
				height: 2.8em;
				border: 1px solid #d0d0d0;
        border-radius: 3px;
        margin-right: 10px;
        padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
			}

			button {
				display: inline-block;
				height: 100%;
				padding: 11px;
				border: 2px solid #fd9317;
				background: #fd9317;
				border-radius: 6px;
				text-align: center;
				font-size: 18px;
				font-weight: 600;
				color: #fff;
			}
		}
		.staff-list {
			li {
				font-size: 20px;
				display: flex;
				gap: 20px;
				margin-bottom: 10px;
				border-bottom: 1px solid;
				width: fit-content;
				padding-bottom: 3px;

				.staff-name {
					font-weight: 700;
				}

				/* .salary-cutoff {
          min-width: 50px;
        } */
			}
		}
	}
}
