*{
	margin: 0px;
	padding: 0px;
	color: white;
}
body{
	background-color: rgba(35, 35, 36, 0.267);
}
.main-box{
	height: fit-content;
	width: 100%;
	display: grid;
	justify-content: center;
	align-items: center;
}
.box1{
	padding: 20px;
	height: 100px;
	width: 100%;
	position: fixed;
	top: 0;
	background-color: black; 
}
.scroller{
	overflow: auto;
	gap: 10px;
	white-space: nowrap;
}
.scroller::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

.scroller::-webkit-scrollbar-thumb {
    background-color: #d4c685;
    border-radius: 4px;
}
.scroller::-webkit-scrollbar-thumb:hover {
    background-color: #f3db07;
}
.scroller::-webkit-scrollbar-track {
    background-color: #0d0d0d; /* Scrollbar track color */
}

img{
	height: 100px;
	width: 140px;
	display: inline-block;
	background-size: cover;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
	transition-duration: 0.8s;
}
img:hover{
	box-shadow: 2px 2px 8px white;
	height: 94px;
	width: 136px;
	opacity: 0.6;
}

.box2{
	margin-top: 160px;
   background-color: rgba(43, 43, 52, 0.267);
   background-image: url("gift3.gif");
   background-size: cover;
   padding: 40px;
   border: 1px solid black;
   border-radius: 20px;
   text-align: center;
}

.inp-s, button{
	background-color: rgba(25, 25, 32, 0.267);
	border: 1px solid white;
	border-radius: 5px;
	padding: 2px 5px 2px 5px;
	display: inline-block;
}
.inp-check{
	padding: 2px 5px 2px 5px;
	display: inline-block;
}
input::placeholder{
	color: rgb(164, 163, 163)
}
.table-box{
	height: fit-content;
	width: 100%;
	display: grid;
	justify-content: center;

}
table{
	width: 100%;
	border: 1px solid white;
	padding: 5px;
	border-radius: 5px;
}
td,th{
	padding: 2px 5px 2px 5px;
	border: 1px solid white;
	border-radius: 5px;
	text-align: center;
	background-color: rgba(25, 25, 32, 0.267);
}
i{
 color: white;
}
.delete{
	transition-duration: 0.5s;
}
.delete:hover{
	background-color: rgb(248, 107, 107);
	border: 1.5px solid red;
}
.stop-btn:hover{
    background-color: rgb(248, 107, 107);
}
@media(max-width: 390px){
	.box1{
	padding: 10px;
	height: 80px;
	width: 100%;
	background-color: black; 
}
.scroller{
	display: flex;
	margin: 0;
	overflow: auto;
	white-space: nowrap;
}
img{
	height: 80px;
	width: 100px;
	 display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-align: center;
	background-size: cover;
}
img:hover{
	box-shadow: 0px 0px 4px white;
	height: 76px;
	width: 96px;
	opacity: 0.6;
}

 .box2{
    background-color: rgba(43, 43, 52, 0.267);
    padding: 10px;
	background-image: url("gift3.gif");
	border: 1px solid black;
    border-radius: 5px;
    text-align: center;
  }
  .inp-s,button, .inp-check{
	display: block;
	text-align: left;
}
}