/**
 * andW 組合管理 フロントエンドスタイル
 *
 * @package Andw_Kumiai_Manager
 */

/* ログインフォーム */
.andw-login-wrap {
	max-width: 400px;
	margin: 2em auto;
	padding: 1.5em;
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
}

.andw-login-wrap h2 {
	margin-top: 0;
	text-align: center;
}

.andw-login-form p {
	margin-bottom: 1em;
}

.andw-login-form label {
	display: block;
	font-weight: bold;
	margin-bottom: 4px;
}

.andw-login-form input[type="number"],
.andw-login-form input[type="password"] {
	width: 100%;
	padding: 8px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

.andw-login-note {
	font-size: 0.85em;
	color: #666;
	text-align: center;
}

/* 共通ボタン */
.andw-btn {
	display: inline-block;
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	text-decoration: none;
}

.andw-btn-primary {
	background: #0073aa;
	color: #fff;
}

.andw-btn-primary:hover {
	background: #005a87;
	color: #fff;
}

/* 通知 */
.andw-notice {
	padding: 10px 14px;
	border-radius: 4px;
	margin-bottom: 1em;
}

.andw-notice-error {
	background: #fef0f0;
	border: 1px solid #e74c3c;
	color: #c0392b;
}

.andw-notice-success {
	background: #f0fff4;
	border: 1px solid #2ecc71;
	color: #1a7a43;
}

/* 役員一覧 */
.andw-officers-wrap {
	max-width: 800px;
	margin: 1em auto;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.andw-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1em;
}

.andw-header h2 {
	margin: 0;
}

.andw-logout-link {
	font-size: 0.9em;
	color: #666;
}

.andw-officers-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 1.5em;
}

.andw-officers-table th,
.andw-officers-table td {
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
	text-align: left;
}

.andw-officers-table th {
	background: #f7f7f7;
	font-weight: bold;
}

/* 公開設定フォーム */
.andw-my-settings-section {
	margin-top: 2em;
	padding-top: 1.5em;
	border-top: 1px solid #eee;
}

.andw-public-fields {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}

.andw-public-fields li {
	margin-bottom: 8px;
}

/* レスポンシブ */
.andw-officers-table {
	min-width: 400px;
}

@media screen and (max-width: 600px) {
	.andw-officers-table {
		display: block;
		overflow-x: auto;
	}

	.andw-officers-table th,
	.andw-officers-table td {
		font-size: 13px;
		padding: 6px 4px;
	}
}
