.main_flex {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.authd li {
	text-align: justify;
	font-weight: bold;
}

body {
    margin: 0;
    background-color: #555;
    font-family: Arial, Helvetica, sans-serif;
}
.authd{
    font: 95% Arial, Helvetica, sans-serif;
    margin: 10px;
	padding: 16px;
	background: #F7F7F7;
    flex-basis: 400px;
}
.tbut{
    border-radius: 15px;
    cursor: pointer;
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    padding: 5px 10px;
}
.tbut:hover {
    background-color: #d0d0d0;
}
.index{
	max-width: 400px;
	margin: 20px auto;
	padding: 16px;
	background: #dddddd;
    border-radius: 15px;
    text-align: center;
}
.index h1{
	background: #9147fe;
	padding: 20px 0;
	font-size: 140%;
	font-weight: 300;
	text-align: center;
	color: #fff;
	margin: -16px -16px 16px -16px;
    border-radius: 15px 15px 0 0;
}
.index a{
    color: #fff;
    text-decoration: none;
}
.index input[type="text"],
.index input[type="date"],
.index input[type="datetime"],
.index input[type="email"],
.index input[type="number"],
.index input[type="search"],
.index input[type="time"],
.index input[type="url"],
.index textarea,
.index select 
{
	outline: none;
	box-sizing: border-box;
	width: 100%;
	background: #fff;
	margin-bottom: 4%;
	border: 1px solid #ccc;
	padding: 3%;
	color: #555;
	font: 95% Arial, Helvetica, sans-serif;
    border-radius: 5px;
}
.index input[type="text"]:focus,
.index input[type="date"]:focus,
.index input[type="datetime"]:focus,
.index input[type="email"]:focus,
.index input[type="number"]:focus,
.index input[type="search"]:focus,
.index input[type="time"]:focus,
.index input[type="url"]:focus,
.index textarea:focus,
.index select:focus
{
	box-shadow: 0 0 5px #9147fe;
	border: 1px solid #9147fe;
}

.authd a,
.index input[type="submit"],
.index input[type="button"]{
	box-sizing: border-box;
	width: 100%;
	padding: 3%;
	background: #9147fe;
	border: none;
	color: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 100%;
}
.index input[type="submit"]:hover,
.index input[type="button"]:hover{
	background: #7a3ee0;
}


.comtable {
    text-align: center;
    background-color: #dddddd;
    border-radius: 15px;
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: fit-content;
    max-width: 95%;
    margin: 20px auto;
    padding: 1%;
    overflow-x: auto;
}

.comtable table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.comtable td, .comtable th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    word-break: break-all;
}

.comtable tr:nth-child(even){background-color: #f2f2f2;}

.comtable th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #9147fe;
    color: white;
}

