@charset "UTF-8";
body {
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
    margin-top: 20px;
}

.title {
    font-size: 2em;
    text-align: center;
    margin-bottom: 20px;
}


.info {
    color: #777777;
    margin-bottom: 35px;
}

	
.btn {
    display: block;
    width: 20%;
    padding: 10px;
    background-color: #1885BE;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

.btn:hover {
    background-color: #0056b3;
}

.btn-block {
    width: 320px;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
}

.password-container {
    position: relative;
    display: inline-block;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 55%;	
    cursor: pointer;
}
.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}
.form-group label {
    margin-bottom: 5px;
}
.form-control {
    width: 300px;
    padding: 10px;
    margin: 5px 0;
	background-color: #eeeeee;
	border-radius: 10px;
	border: 1px;
}

img.logo {
    width: 20%;
	height: auto;
}

img.not_login {
    width: 30%;
	margin: 0 auto;
	display: block;
}

img.toggle-password {
	width: 6%;
	height: auto;
}

header {
    display: flex;
	justify-content: center;
    align-items: center;
    padding: 10px;
	width: 100%;
}
header.not_login_header {
	justify-content: center;
}

header.common_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    width: 100%;
}

header.common_header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

header.common_header .user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

header.common_header .user-info p {
    margin: 0;
}

header.common_header .hr-container {
    width: 100%;
    display: flex;
    justify-content: center;
}


header hr {
    border: none;
    height: 2px;
    background-color: #005978;
	width: 90%;
	margin: 15px auto;
}

header.common_header .centered-hr {
    width: 95%;
    margin: 10px 0;
}

header.common_header .logout-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

header.common_header .logout-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
	color: #1885BE;
    border-bottom: 1px solid currentColor;
	font-size: 1.2em;
	font-weight: bold;
}

header.common_header .logout {
    width: 30px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

header.common_header .usermanage-container {
    display: flex;
    align-items: center;
	margin-top: -7px;
	margin-right: 5px;
}

header.common_header .usermanage {
    width: 40px;
    height: auto;
    margin-right: 5px;
    vertical-align: middle;
}

.info-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
}

.info-link a{
    margin-bottom: 15px;
}

.no-login-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18vh;
}
.no-login-info-container .info-box {
    border: 2px solid black;
    padding: 20px;
    text-align: center;
}

.main{
	font-size: 1.5em;
}

table.user-list {
	border-collapse: collapse;
	border: 2px #333333 solid;	
}

table.user-list td {
	border-top: 2px #333333 solid;	
	text-align: left;
	color: #777777;
	padding-right: 15px;
}

table.user-list th {
	text-align: left;
	color: #777777;
}
table.user-list tr:hover td {
    background-color: #ffffe0;
}

table.sort-list th {
    position: relative;
	cursor: pointer;
	padding-right: 25px;
}

.sort-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
	border-bottom: 12px solid #777777	;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
}
.sort-arrow.asc {
    border-top: none;
    border-bottom: 12px solid #777777;
}
.sort-arrow.desc {
    border-bottom: none;
    border-top: 12px solid #777777;
}



.user-list-header {
	color: #555555;
	font-size: 200%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 95%;
}

.user-list-header .form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.user-form {
	display: flex;
	flex-direction: column;
	align-items: center;
    margin-top: 20px;
}


.user-form .submit-container{
	display: flex;
	justify-content: center;
	width: 100%;
}

.user-form .form-group {
	flex-direction: row;
	align-items: center;
    margin-bottom: 1rem;
}
.user-form .form-group label {
    width: 150px;
    padding-right: 10px;
}

.login-error {
    background-color: #f8d7da; /* 薄い赤 */
    color: #721c24; /* 濃い赤 */
    border: 1px solid #f5c6cb;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}