@charset "UTF-8";
body{
	font-family:
		"Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 16px;
	min-height: 100vh;
	position: relative;
	box-sizing: border-box;
	color:#333;
	background-color:#EFEFEF;
}
.wrap-daily-report {
    display: flex;
    gap: 20px;
    width: 1024px;
    max-width:100%;
}

.daily-report-left, .daily-report-right {
    width: 50%;
}

.daily-report-left form {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.daily-report-left label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.daily-report-left input,
.daily-report-left select,
.daily-report-left textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.daily-report-right {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-item {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

.report-item p {
    margin: 5px 0;
}
/* 前月・次月ボタンのスタイル */
.pagination-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 5px;
}

.pagination-button:hover {
    background-color: #005885;
}

/* 無効化されたボタンのスタイル */
.pagination-button.disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    pointer-events: none;
}

/* レポートセクションの全体スタイル */
.report-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

/* 日別工数一覧 */
.daily-hours-list {
    margin-top: 20px;
}

.daily-hours-list table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.daily-hours-list th, 
.daily-hours-list td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.daily-hours-list th {
    background-color: #f1f1f1;
    font-weight: bold;
}

/* 修正フォームのスタイル */
.edit-form {
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.edit-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.edit-form input[type="text"],
.edit-form input[type="date"],
.edit-form select,
.edit-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.edit-form button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0073aa;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.edit-form button:hover {
    background-color: #005885;
}

/* 削除ボタンのスタイル */
.edit-form .delete-button {
    background-color: #d9534f;
    margin-left: 10px;
}

.edit-form .delete-button:hover {
    background-color: #c9302c;
}

/* メッセージ通知 */
.message {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #d6e9c6;
    background-color: #dff0d8;
    color: #3c763d;
    border-radius: 5px;
}

.message.error {
    border-color: #ebccd1;
    background-color: #f2dede;
    color: #a94442;
}
.wrap-daily-report-view {
    display: flex;
    gap: 20px;
    width:1024px;
    max-width:100%;
}

.daily-report-left {
    width: 40%;
    border-right: 1px solid #ddd;
    padding-right: 20px;
}

.daily-report-right {
    width: 60%;
    padding-left: 20px;
}

.daily-report-left h3 {
    margin-top:10px;
    font-size: 18px;
}

.daily-report-left .date-list {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 10px;
}

.daily-report-left .date-list th,
.daily-report-left .date-list td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
    background-color:#FFF;
}

.daily-report-left .date-list th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.daily-report-left .date-list tr:hover {
    background-color: #f9f9f9;
}

.daily-report-left .date-list td a {
    text-decoration: none;
    color: #0073aa;
}

.daily-report-left .date-list td a:hover {
    text-decoration: underline;
}

.daily-report-right h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.daily-report-right form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.daily-report-right form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.daily-report-right form input[type="number"],
.daily-report-right form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.daily-report-right form textarea {
    resize: vertical;
    min-height: 100px;
}

.daily-report-right form .button-primary {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.daily-report-right form .button-primary:hover {
    background-color: #005177;
}

.daily-report-right form .button-secondary {
    background-color: #f4f4f4;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.daily-report-right form .button-secondary:hover {
    background-color: #e4e4e4;
}

/* 修正フォーム全体のスタイル */
.edit-report-form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.report-details {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
}

.report-details th, .report-details td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.report-details th {
    background-color: #f4f4f4;
    font-weight: bold;
}

.report-details tr:hover {
    background-color: #f9f9f9;
}

.report-details .edit-button {
    text-decoration: none;
    color: #fff;
    background-color: #0073aa;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.report-details .edit-button:hover {
    background-color: #005177;
}
/* カテゴリごとの工数表スタイル */
table.category-summary {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

table.category-summary thead tr {
    background-color: #f1f1f1;
}

table.category-summary thead th {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
}

table.category-summary tbody td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table.category-summary tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

table.category-summary tbody tr:nth-child(even) {
    background-color: #f6f6f6;
}

table.category-summary tbody tr:hover {
    background-color: #eef;
}

table.category-summary td:first-child {
    font-weight: bold;
}
/* 部署別カテゴリ工数集計テーブル */
table.department-category-summary {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

table.department-category-summary thead tr {
    background-color: #f1f1f1;
}

table.department-category-summary thead th {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
    font-weight: bold;
}

table.department-category-summary tbody td {
    padding: 8px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

table.department-category-summary tbody tr:nth-child(odd) {
    background-color: #ffffff;
}

table.department-category-summary tbody tr:nth-child(even) {
    background-color: #f6f6f6;
}

table.department-category-summary tbody tr:hover {
    background-color: #eef;
}

/* 1024px =================================================== */
@media screen and (max-width: 1024px) {

}
/* 768px ==================================================== */
@media screen and (max-width: 768px) {
	.sp-only{display: block;}
	.pc-only{display: none;}

	.drawer-nav {
		position: fixed;
		z-index: 2;
		top: 0;
		overflow: hidden;
		width: 14rem;
		height: 100%;
		color:#543f32;
		background-color:#ede4cd;
	}
	.drawer-menu-item{
		padding:0.65rem;
	}
    .container {
        margin-left: 0px; /* 左メニューの幅を考慮 */
        padding: 20px;
        display: flex;
        flex-direction: column; /* 子要素を縦に並べる */
        align-items: center; /* 中央寄せ */
        min-height: 100vh; /* 画面全体に拡張 */
        background-color: #f9f9f9; /* 背景色を調整 */
        box-sizing: border-box; /* パディングを含めた幅計算 */
    }
}
/* 480px ==================================================== */
@media screen and (max-width: 480px) {}
/* 320px ==================================================== */
@media screen and (max-width: 320px) {}
/* 320px ==================================================== */
