
@import url("https://fonts.googleapis.com/css2/family-Poppins&display-swap");
*{
	padding:0;
	margin:0;
	box-sizing:border-box;
	font-family:"poppins",sans-serif;
}
body {
	/*background-image: url("layout/front1.jpg");  */
	background: #ccc;
	display:flex;
	justify-content:center;
	align-items: center;
	min-height: 100vh; 


}

table.sound {


	font-family:sans-serif;
	font-size: 20px;
	font-style: oblique;
}

.sound th,td {
	font-size: 30px;

	border: 4px dolid red;
}



.sound.a{
	table-layout: auto;
	width:250px;
}

.button-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	background-color: PeachPuff; /* Wit */
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 12px 4px rgba(0, 0, 0, 0.1);
}
.button {
	background-color: Peach; /* Lichtblauw */
	color: darkbluef;
	padding: 10px 20px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	text-align: center;
}

.container{
	max-width:1440px;
	width:100%;
	background:   #fff;
	box-shadow:2px 5px 10px #rgba(0,0,0,0.5);
}

.container h2{
	padding:2rem 1rem;
	font-size:2.5rem;
	text-align: center;
}



.tbl{
	width:100%;
	border-collapse: collapse;
}

.tbl thead{
	background: #424949 ;
	color: #fff;
}

.tbl  thead tr th{
	font-size: 0.9rem
	padding:0.8rem;
	letter-spacing: 0.2rem;
	vertical-align: top;
	border:1 px solid #aab7b8;
}

.tbl tbody tr td{
	font-size: 1rem;
	letter-spacing: 0.2rem;
	font-weight: normal;
	text-align: left;
	border: 1px solid #aab7b8;
}

.tbl tr:nth-child(even){
	background: #ccc;;
	transition: all 0.3s ease-in;
	cursor: pointer;
}

.tbl tr:hover td{
	background: #839192;
	color:#000;
	transition: all 0.3s ease-in;
	cursor:pointer;
}

.tbl button{
	display: inline-block;
	border: none;
	margin:0 auto;
	padding: 0.4rem;
	border-radius:1px;
	outline:none;
	cursor:pointer ;
}

.btn_trash{
	background: #e74c3c;
	color: #fff}
}
btn_edit {
	background: #1e8449;
	color: #fff;
}

@media (max-width:768px){
	.tbl thead{
	display:none;
}
.tbl tr,
.tbl td{
	display: block;
	width: 100%;
}

.tbl tr{
	margin-bottom: 1rem;
}
.tbl tbody tr td{
	text-align: right;;
	position: relative;
}

.tbl td::before{
	content: attr(data-lable);
	position: absolute;
}
	}    
		


