.title {
	display: grid;
	justify-content: center;
	/* background-color: red; */
	padding-top:10px;
}

.outercontainer {
	height: auto;
	width: fit-content;
	margin: 0px auto 60px;
	padding: 25px 25px 10px 25px;
	border-radius:5px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.1); 
	background-color: rgb(255, 255, 255);
}

.single-column-element {
	height:45px;
	display: grid;
	grid-template-columns: 100px 200px;
	white-space: nowrap;
	column-gap: 160px;
	padding: 0px 20px;
}

.double-column-element {
	display: grid;
	grid-template-columns: 100px 200px 100px 200px;
	white-space: nowrap;
	column-gap: 75px;
	padding: 0px 20px;
	height: 55px;
}

.quadruple-column-element {
	display: grid;
	grid-template-columns: 200px 200px 200px 200px;
	white-space: nowrap;
	column-gap: 70px;
	padding: 0px 20px;
	height: 70px;
}

.input-field {
	width: 180px;
	border: solid 1px #ADD8E6;
	height: 22px;
	padding: 0px 5px;
	font-size: 12px;
	box-sizing: border-box;
}

.role-container {
	display: grid;
	grid-template-columns: 200px 50px 200px;
	width: fit-content;
	padding: 0px 10px;
	column-gap: 10px;
	margin: 5px auto;
}

.select-field {
	outline: none;
	font-size: 12px;
	border: 1.5px solid grey;
	overflow-y: auto;
	overflow-x: auto;
	box-sizing: border-box;
	width: 200px;
	margin: 2px;
}

.shift {
	text-align: center;
}

.shift img {
	margin-bottom: 10px;
	width:25px;
	height:25px;
}

.checkbox-container {
	display: grid;
	margin-top: 5px;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	grid-auto-flow: column;
	column-gap: 15px;
}

.input-field:focus {
	outline: none;
	box-shadow: 0 0 5px rgba(21, 203, 238, 1);
}

.plus-btn{
	padding: 0px 10px;
	text-align: center;
	border: none;
	/* background-color: rgba(21, 203, 238, 1); */
	background-color:rgb(0,64,128);
	color: #fff;
	font-size: 18px;
	font-weight: bolder;
	border-radius: 5px;
}


.plus-btn:hover {
	/* box-shadow: 0 0 5px rgba(21, 203, 238, 1); */
	box-shadow:0 0 5px rgb(0,64,128);
}

.user-btn {
	display: flex;
	justify-content: center;
	width: auto;
	column-gap: 15px;
	margin: 0px 0px 10px;
}

.user-btn button {
	padding: 5px 15px;
	background-color: black;
	border-radius: 4px;
	color: white;
	border: none;
	outline: none;
}

.user-btn button:hover {
	background-color: rgba(21, 203, 238, 1);
}

.popup {
    display: none;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 30px 0px;
    background-image: linear-gradient(#1D5D9B, #40A2E3);
    border-radius: 5px;
    text-align: center;
    width: 400px;
}

.popup-user-btn {
	display: flex;
	justify-content: center;
	width: auto;
	column-gap: 15px;
	margin: 20px 0px 0px 0px;
}

.popup-user-btn button {
	padding: 5px 15px;
	background-color: black;
	border-radius: 4px;
	color: white;
	border: none;
	outline: none;
}


.popup-user-btn button:hover {
	background-color: white;
	color:black;
}

#popupDiv {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Perfect centering */
    background: #fff;
    border: 1px solid #333;
    padding: 20px 30px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-weight: bold; /* Makes text bold */
    min-width: 250px;
    background-color: #ffff80;
}