.tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
		 border-radius: 10px;

}

.tabs button {
    padding: 10px 15px;
    border: none;
    background: #ddd;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
}

.tabs button.active {
    background: #3498db;
    color: white;
}

.tabcontent {
    display: none;
}

.tabcontent.active {
    display: block;
	 background: #f5f5d5;
	 border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    width: 200px;
    padding: 8px;
    background: #f5f5f5;
}

td {
    padding: 8px;
}
.center-title {
    text-align: center;
	
}