@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * Rails 7では、以下のrequire文を使用します
 */
/*


 */
/* line 1, app/assets/stylesheets/users.scss */
.user-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* line 6, app/assets/stylesheets/users.scss */
.user-info h1 {
  margin-bottom: 30px;
  color: #333;
}

/* line 11, app/assets/stylesheets/users.scss */
.user-info .info-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

/* line 17, app/assets/stylesheets/users.scss */
.user-info .info-section h2 {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* line 25, app/assets/stylesheets/users.scss */
.user-info .info-section dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
}

/* line 30, app/assets/stylesheets/users.scss */
.user-info .info-section dl dt {
  font-weight: bold;
  color: #666;
}

/* line 35, app/assets/stylesheets/users.scss */
.user-info .info-section dl dd {
  margin: 0;
  color: #333;
}

/* line 44, app/assets/stylesheets/users.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 47, app/assets/stylesheets/users.scss */
.form-group .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #666;
}

/* line 54, app/assets/stylesheets/users.scss */
.form-group .form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
}

/* line 61, app/assets/stylesheets/users.scss */
.form-group .form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 68, app/assets/stylesheets/users.scss */
.form-group textarea.form-control {
  min-height: 100px;
}

/* line 73, app/assets/stylesheets/users.scss */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 78, app/assets/stylesheets/users.scss */
.checkbox-group .form-checkbox {
  width: 18px;
  height: 18px;
}

/* line 83, app/assets/stylesheets/users.scss */
.checkbox-group .form-label {
  margin: 0;
}

/* line 88, app/assets/stylesheets/users.scss */
.error-message {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* line 96, app/assets/stylesheets/users.scss */
.error-message h2 {
  margin-top: 0;
  font-size: 1.2em;
}

/* line 101, app/assets/stylesheets/users.scss */
.error-message ul {
  margin-bottom: 0;
  padding-left: 20px;
}

/* line 107, app/assets/stylesheets/users.scss */
.actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

/* line 112, app/assets/stylesheets/users.scss */
.actions .btn {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* line 119, app/assets/stylesheets/users.scss */
.actions .btn-primary {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

/* line 124, app/assets/stylesheets/users.scss */
.actions .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* line 130, app/assets/stylesheets/users.scss */
.actions .btn-secondary {
  background-color: #6c757d;
  color: white;
  border: 1px solid #6c757d;
}

/* line 135, app/assets/stylesheets/users.scss */
.actions .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* line 4, app/assets/stylesheets/projects.scss */
#project_large_form {
  display: grid;
  grid-template-columns: auto;
  width: calc(100% - 40px);
  background-color: #eee;
  border: none;
  border-radius: 20px;
  padding: 10px;
  column-gap: 5px;
  row-gap: 5px;
}

/* line 17, app/assets/stylesheets/projects.scss */
.project_form {
  display: grid;
  height: auto;
  background-color: #ddf;
  flex-wrap: wrap;
  padding: .5em;
  column-gap: 2em;
  row-gap: 0.2em;
  border: solid gray 3px;
  border-radius: 10px;
}

/* line 29, app/assets/stylesheets/projects.scss */
.project_form div {
  align-items: flex-start;
}

/* line 31, app/assets/stylesheets/projects.scss */
.project_form div input, .project_form div select {
  font-size: 100%;
}

/* line 35, app/assets/stylesheets/projects.scss */
.project_form div label {
  font-size: 90%;
  font-weight: bold;
  color: blue;
  align-items: flex-start;
}

/* line 44, app/assets/stylesheets/projects.scss */
.project_summary {
  align-items: flex-start;
  border: 2px dotted darkblue;
  border-radius: 15px;
  padding: 5px 10px;
  background-color: #dde;
  margin-bottom: 1em;
}

/* line 52, app/assets/stylesheets/projects.scss */
.project_summary * {
  align-items: flex-start;
  display: inline-block;
  padding: 0.0em 0;
  margin: 0;
  min-width: 2em;
}

/* line 61, app/assets/stylesheets/projects.scss */
.project_summary label {
  font-size: 80%;
  color: blue;
  display: inline-block;
  padding: 3px;
  margin: 3px;
  border-radius: 5px;
  border: 1px gray solid;
  background-color: #eee;
  font-size: 30%;
}

/* line 69, app/assets/stylesheets/projects.scss */
.project_summary p {
  padding: 0 0.2em;
}

/* line 75, app/assets/stylesheets/projects.scss */
table.estimate_details {
  border-collapse: separate;
  border: none;
}

/* line 78, app/assets/stylesheets/projects.scss */
table.estimate_details tr, table.estimate_details td, table.estimate_details th {
  border: none;
}

/* line 81, app/assets/stylesheets/projects.scss */
table.estimate_details th {
  background-color: #cdf;
  font-size: 80%;
}

/* line 85, app/assets/stylesheets/projects.scss */
table.estimate_details tr, table.estimate_details td {
  background-color: white;
}

/* line 91, app/assets/stylesheets/projects.scss */
.procurements_in_estimate {
  border: 2px solid #bed;
  border-radius: 5px;
  background-color: #cfe;
  padding: 10px;
  margin: 5px;
}

/* line 99, app/assets/stylesheets/projects.scss */
.expenses_in_estimate {
  border: 2px solid #bed;
  border-radius: 5px;
  background-color: #cef;
  padding: 10px;
  margin: 5px;
}

/* line 107, app/assets/stylesheets/projects.scss */
.procurements_and_expenses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0px;
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
/* line 18, app/assets/stylesheets/schedules.scss */
:root {
  --calendar-available-height: calc(100vh - 350px);
}

/* line 22, app/assets/stylesheets/schedules.scss */
.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

/* line 31, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell {
  background-color: #fff;
  min-height: 120px;
  padding: 8px;
  border: none;
}

/* line 37, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell:hover {
  background-color: #f8f9fa;
}

/* line 41, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* line 48, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 53, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 58, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 63, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 68, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 75, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 80, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item {
  margin-bottom: 4px;
}

/* line 83, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link {
  display: block;
  padding: 4px 8px;
  background-color: #e3f2fd;
  color: #1976d2;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
}

/* line 93, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link:hover {
  background-color: #1976d2;
  color: #fff;
}

/* line 104, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 109, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 114, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 119, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 124, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 131, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 136, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 141, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 146, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 151, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 158, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start {
  background: linear-gradient(90deg, #4caf50 0%, #81c784 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 4px 0 0 4px;
  border-right: 2px solid #2e7d32;
  position: relative;
}

/* line 166, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start::after {
  content: "▶";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 185, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle {
  background: linear-gradient(90deg, #81c784 0%, #81c784 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 0;
  border-left: 2px solid #2e7d32;
  border-right: 2px solid #2e7d32;
  position: relative;
}

/* line 194, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle::before {
  content: "◀";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 212, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle::after {
  content: "▶";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 231, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid #2e7d32;
  position: relative;
}

/* line 239, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end::before {
  content: "◀";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 259, app/assets/stylesheets/schedules.scss */
.kumitate {
  border: 1px dotted blue;
  background-color: darkslategray;
  color: white;
}

/* line 263, app/assets/stylesheets/schedules.scss */
.kumitate a {
  color: lightgray;
}

/* line 266, app/assets/stylesheets/schedules.scss */
.kumitate a:hover {
  color: white;
}

/* line 271, app/assets/stylesheets/schedules.scss */
.tekkyo {
  border: 1px dotted blue;
  background-color: darkred;
  color: white;
}

/* line 275, app/assets/stylesheets/schedules.scss */
.tekkyo a {
  color: lightgray;
}

/* line 278, app/assets/stylesheets/schedules.scss */
.tekkyo a:hover {
  color: blue;
}

/* line 284, app/assets/stylesheets/schedules.scss */
.schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 297, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 305, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 308, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 313, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 320, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 328, app/assets/stylesheets/schedules.scss */
.schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 342, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip,
.schedule-calendar .schedule-tooltip,
body .schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 357, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-header,
.schedule-calendar .schedule-tooltip .tooltip-header,
body .schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 365, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content,
.schedule-calendar .schedule-tooltip .tooltip-content,
body .schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 368, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 373, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row .label,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 380, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 388, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip::before,
.schedule-calendar .schedule-tooltip::before,
body .schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 402, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip,
body .schedule-calendar .schedule-tooltip,
body .schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 417, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-header,
body .schedule-calendar .schedule-tooltip .tooltip-header,
body .schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 425, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content,
body .schedule-calendar .schedule-tooltip .tooltip-content,
body .schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 428, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 433, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 440, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 448, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip::before,
body .schedule-calendar .schedule-tooltip::before,
body .schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 462, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-tooltip .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 472, app/assets/stylesheets/schedules.scss */
div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 480, app/assets/stylesheets/schedules.scss */
div[id*="tooltip_"] .tooltip-content .tooltip-row .value[style*="color"],
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value[style*="color"] {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 488, app/assets/stylesheets/schedules.scss */
body div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
body div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value,
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value,
div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value,
#schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-tooltip .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 504, app/assets/stylesheets/schedules.scss */
.btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 515, app/assets/stylesheets/schedules.scss */
.btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 520, app/assets/stylesheets/schedules.scss */
.btn-circle i {
  font-size: 16px;
  line-height: 1;
}

@keyframes pulse-attention {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* line 539, app/assets/stylesheets/schedules.scss */
.schedule-item-not-agreed .schedule-link,
.schedule-item .schedule-item-not-agreed .schedule-link {
  background-color: #ff9800 !important;
  color: white !important;
  border: 2px solid #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 545, app/assets/stylesheets/schedules.scss */
.schedule-item-not-agreed .schedule-link:hover,
.schedule-item .schedule-item-not-agreed .schedule-link:hover {
  background-color: #ff6b35 !important;
  color: white !important;
}

/* line 553, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed,
#schedules .schedule-item .multi-day-schedule-middle.not-agreed,
#schedules .schedule-item .multi-day-schedule-end.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  border-color: #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.5) !important;
}

/* line 563, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  border-right-color: #ff6b35 !important;
}

/* line 567, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed::after {
  color: #ff6b35 !important;
}

/* line 573, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.not-agreed {
  background: linear-gradient(90deg, #ff6b35 0%, #ff6b35 100%) !important;
  border-left-color: #ff6b35 !important;
  border-right-color: #ff6b35 !important;
}

/* line 578, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.not-agreed::before, #schedules .schedule-item .multi-day-schedule-middle.not-agreed::after {
  color: #ff6b35 !important;
}

/* line 585, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.not-agreed {
  background: linear-gradient(90deg, #ff6b35 0%, #ff9800 100%) !important;
  border-left-color: #ff6b35 !important;
}

/* line 589, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.not-agreed::before {
  color: #ff6b35 !important;
}

/* line 595, app/assets/stylesheets/schedules.scss */
.normal_schedule.not-agreed {
  background-color: #ff9800 !important;
  color: white !important;
  border: 2px solid #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 601, app/assets/stylesheets/schedules.scss */
.normal_schedule.not-agreed:hover {
  background-color: #ff6b35 !important;
}

@keyframes red-blink {
  0%, 100% {
    opacity: 1;
    background-color: #dc3545;
  }
  50% {
    opacity: 0.5;
    background-color: #ff6b6b;
  }
}

/* line 621, app/assets/stylesheets/schedules.scss */
.schedule-item-red-alert .schedule-link,
.schedule-item .schedule-item-red-alert .schedule-link {
  background-color: #dc3545 !important;
  color: white !important;
  border: 2px solid #c82333 !important;
  animation: red-blink 1.5s ease-in-out infinite;
}

/* line 627, app/assets/stylesheets/schedules.scss */
.schedule-item-red-alert .schedule-link:hover,
.schedule-item .schedule-item-red-alert .schedule-link:hover {
  background-color: #c82333 !important;
  color: white !important;
}

/* line 635, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert,
#schedules .schedule-item .multi-day-schedule-middle.red-alert,
#schedules .schedule-item .multi-day-schedule-end.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  border-color: #c82333 !important;
  animation: red-blink 1.5s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 107, 107, 0.5) !important;
}

/* line 645, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  border-right-color: #c82333 !important;
}

/* line 649, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert::after {
  color: #c82333 !important;
}

/* line 655, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.red-alert {
  background: linear-gradient(90deg, #ff6b6b 0%, #ff6b6b 100%) !important;
  border-left-color: #c82333 !important;
  border-right-color: #c82333 !important;
}

/* line 660, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.red-alert::before, #schedules .schedule-item .multi-day-schedule-middle.red-alert::after {
  color: #c82333 !important;
}

/* line 667, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.red-alert {
  background: linear-gradient(90deg, #ff6b6b 0%, #dc3545 100%) !important;
  border-left-color: #c82333 !important;
}

/* line 671, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.red-alert::before {
  color: #c82333 !important;
}

/* line 677, app/assets/stylesheets/schedules.scss */
.schedule-badge-star {
  position: absolute;
  top: 2px;
  left: 2px;
  color: #ffd700;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
  animation: star-pulse 1s steps(1, end) infinite;
}

@keyframes star-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* line 703, app/assets/stylesheets/schedules.scss */
.card.calendar-card,
.card:has(.schedule-calendar-view) {
  padding: 0;
  margin-bottom: 0;
}

/* line 709, app/assets/stylesheets/schedules.scss */
.card.calendar-card:hover,
.card:has(.schedule-calendar-view):hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 714, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls {
  padding: 4px 8px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 721, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

/* line 728, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 733, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  min-width: 100px;
  text-align: center;
  margin: 0 4px;
}

/* line 742, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn {
  font-size: 12px !important;
  padding: 4px 8px !important;
  min-height: 28px !important;
  min-width: auto !important;
  margin: 0;
}

/* line 751, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management {
  margin-left: auto;
}

/* line 754, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn {
  margin: 0;
}

/* line 761, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 766, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* line 774, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control {
  font-size: 12px;
  padding: 4px 8px;
  min-height: 28px;
  margin: 0;
}

/* line 786, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-body,
.card:has(.schedule-calendar-view) .card-body {
  padding: 0;
}

/* line 791, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view {
  overflow: hidden;
  position: relative;
}

/* line 796, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-floating-controls {
  display: none;
}

/* line 801, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-month-selector {
  display: none;
}

/* line 806, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header {
  display: none;
}

/* line 809, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell {
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #495057;
}

/* line 817, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell:nth-child(6) {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 822, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell:nth-child(7) {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 830, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* line 840, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell {
  background-color: #fff;
  min-height: 120px;
  height: auto;
  padding: 0;
  border: none;
  overflow: hidden;
  position: relative;
}

/* line 849, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell:hover {
  background-color: #f8f9fa;
}

/* line 853, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell.other-month {
  background-color: #f5f5f5;
  color: #999;
}

/* line 857, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell.other-month .date_cell {
  color: #999;
}

/* line 862, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 2px 4px;
  border-radius: 4px;
  text-align: center;
  position: relative;
}

/* line 871, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell .date-link {
  display: block;
  text-align: center;
  line-height: 1.5;
  padding: 2px 4px;
}

/* line 878, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 883, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 888, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 893, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 898, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 905, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .project-schedule-item {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 0;
}

/* line 911, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .project-schedule-item p {
  background-color: #28a745;
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 0;
}

/* line 921, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 926, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item {
  margin-bottom: 0;
}

/* line 929, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item.schedule-item-hidden {
  display: none;
}

/* line 933, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link {
  display: block;
  padding: 2px 4px;
  background-color: #e3f2fd;
  color: #1976d2;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 946, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link:hover {
  background-color: #1976d2;
  color: #fff;
}

/* line 953, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items {
  margin-bottom: 0;
}

/* line 956, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items.schedule-item-hidden {
  display: none;
}

/* line 960, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-more-link {
  display: block;
  padding: 2px 4px;
  background-color: #6c757d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

/* line 972, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-more-link:hover {
  background-color: #5a6268;
}

/* line 982, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  margin: 2px 1px;
  padding: 2px 8px;
  background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  border-radius: 4px;
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: auto;
}

/* line 998, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link {
  color: #1976d2;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

/* line 1008, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link:hover {
  text-decoration: underline;
}

/* line 1013, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .schedule-badge-star {
  color: #ffd700;
  font-size: 14px;
  margin-left: 4px;
  flex-shrink: 0;
}

/* line 1020, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-start {
  border-radius: 4px 0 0 4px;
}

/* line 1024, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-end {
  border-radius: 0 4px 4px 0;
}

/* line 1028, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-middle {
  border-radius: 0;
}

/* line 1032, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-single {
  border-radius: 4px;
}

/* line 1036, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 1041, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  animation: red-blink 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  /* line 1050, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card,
.schedule-calendar-view .card:has(.schedule-calendar-view) {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 1055, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls {
    padding: 4px;
  }
  /* line 1058, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row {
    min-height: 28px;
    flex-wrap: wrap;
  }
  /* line 1063, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation {
    gap: 2px;
  }
  /* line 1066, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month {
    font-size: 12px;
    min-width: 80px;
    margin: 0 2px;
  }
  /* line 1072, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn {
    font-size: 11px !important;
    padding: 3px 6px !important;
    min-height: 24px !important;
  }
  /* line 1080, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn {
    min-height: 24px !important;
    min-width: 24px !important;
  }
  /* line 1088, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection {
    gap: 4px;
  }
  /* line 1091, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label {
    font-size: 11px;
  }
  /* line 1095, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control {
    font-size: 11px;
    padding: 3px 6px;
    min-height: 24px;
  }
  /* line 1105, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-body,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-body {
    padding: 0;
  }
  /* line 1110, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-month-selector {
    display: none;
  }
  /* line 1115, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-weekday-header .weekday-cell {
    padding: 8px 4px;
    font-size: 12px;
  }
  /* line 1122, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell {
    min-height: 80px;
    max-height: 80px;
    padding: 0;
    overflow: hidden;
  }
  /* line 1128, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .date_cell {
    font-size: 9px;
    padding: 1px 2px;
    margin-bottom: 0;
  }
  /* line 1135, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item {
    margin-bottom: 0;
  }
  /* line 1138, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item.schedule-item-hidden {
    display: none;
  }
  /* line 1142, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link {
    padding: 1px 2px;
    font-size: 10px;
  }
  /* line 1148, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items {
    margin-bottom: 0;
  }
  /* line 1151, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items.schedule-item-hidden {
    display: none;
  }
  /* line 1155, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-link {
    padding: 1px 2px;
    font-size: 10px;
  }
  /* line 1164, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar {
    height: 20px;
    padding: 1px 4px;
    font-size: 10px;
  }
  /* line 1169, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link {
    font-size: 10px;
  }
  /* line 1173, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar .schedule-badge-star {
    font-size: 12px;
  }
}

/* line 1181, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend {
  font-size: 12px;
  color: #495057;
  margin: 8px 0 0;
  padding: 8px 12px;
  background: #f1f3f5;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

/* line 1190, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__item {
  margin-right: 1.25rem;
  padding-left: 14px;
  position: relative;
}

/* line 1195, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 10px;
  height: 0.85em;
  border-radius: 2px;
}

/* line 1206, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__mine::before {
  background: linear-gradient(90deg, #4caf50 0%, #81c784 100%);
}

/* line 1210, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__peer::before {
  border-left: 4px solid #00897b;
  background: linear-gradient(90deg, #b2dfdb 0%, #4db6ac 100%);
  width: 8px;
}

/* line 1216, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__unassigned::before {
  border: 2px dashed #90a4ae;
  background: rgba(236, 239, 241, 0.95);
}

/* line 1223, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-peer:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #b2dfdb 0%, #4db6ac 100%) !important;
  border-left: 4px solid #00897b;
  box-sizing: border-box;
}

/* line 1229, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-unassigned:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #eceff1 0%, #cfd8dc 100%) !important;
  color: #37474f !important;
  border: 2px dashed #90a4ae;
  box-sizing: border-box;
}

/* line 1235, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-unassigned:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #37474f !important;
}

/* line 1242, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-peer:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #00897b;
  padding-left: 6px;
  background-color: #e0f2f1;
  color: #00695c;
}

/* line 1248, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-peer:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #00897b;
  color: #fff;
}

/* line 1254, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-unassigned:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border: 1px dashed #90a4ae;
  background-color: #eceff1;
  color: #455a64;
  opacity: 0.95;
}

/* line 1260, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-unassigned:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #90a4ae;
  color: #fff;
  border-style: solid;
  opacity: 1;
}

/* line 1270, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-shokuchou-peer {
  border-left: 4px solid #00897b;
  padding-left: 6px;
  background-color: #e0f2f1;
}

/* line 1276, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-shokuchou-unassigned {
  border: 1px dashed #90a4ae;
  background-color: #eceff1;
  color: #455a64;
}

/* line 1286, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #66bb6a 0%, #43a047 100%) !important;
  color: #fff !important;
  border-top: 1px solid #2e7d32;
  border-bottom: 1px solid #2e7d32;
  border-left: 1px solid #2e7d32;
  border-right: 1px solid #2e7d32;
  box-sizing: border-box;
}

/* line 1295, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1301, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-start:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
}

/* line 1305, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-end:not(.not-agreed):not(.red-alert) {
  border-right-width: 3px;
}

/* line 1309, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-single:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
  border-right-width: 3px;
}

/* line 1314, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #ef5350 0%, #e53935 100%) !important;
  color: #fff !important;
  border-top: 1px solid #c62828;
  border-bottom: 1px solid #c62828;
  border-left: 1px solid #c62828;
  border-right: 1px solid #c62828;
  box-sizing: border-box;
}

/* line 1323, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1329, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-start:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
}

/* line 1333, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-end:not(.not-agreed):not(.red-alert) {
  border-right-width: 3px;
}

/* line 1337, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-single:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
  border-right-width: 3px;
}

/* line 1345, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-kumitate:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #2e7d32;
  padding-left: 6px;
  background-color: #e8f5e9;
  color: #1b5e20;
}

/* line 1351, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-kumitate:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #43a047;
  color: #fff;
}

/* line 1357, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-tekkyo:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #c62828;
  padding-left: 6px;
  background-color: #ffebee;
  color: #8e0000;
}

/* line 1363, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-tekkyo:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #e53935;
  color: #fff;
}

/* line 1372, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-type-kumitate:not(.not-agreed) {
  border-left: 4px solid #2e7d32;
  padding-left: 6px;
  background-color: #e8f5e9;
  color: #1b5e20;
}

/* line 1379, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-type-tekkyo:not(.not-agreed) {
  border-left: 4px solid #c62828;
  padding-left: 6px;
  background-color: #ffebee;
  color: #8e0000;
}

/* line 1392, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link {
  border-left: 4px solid #2e7d32 !important;
  padding-left: 22px;
  position: relative;
}

/* line 1398, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link {
  border-left: 4px solid #7f1d1d !important;
  padding-left: 22px;
  position: relative;
}

/* line 1404, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link::before, .schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link::before {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  opacity: 1;
  animation: none;
}

/* line 1423, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link::before {
  content: "組";
  background: #2e7d32;
}

/* line 1428, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link::before {
  content: "撤";
  background: #7f1d1d;
}

/* line 1436, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate {
  border-left: 3px solid #2e7d32;
  box-sizing: border-box;
}

/* line 1441, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo {
  border-left: 3px solid #7f1d1d;
  box-sizing: border-box;
}

/* line 1446, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link, .schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link {
  position: relative;
  padding-left: 18px;
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1454, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link::before, .schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  animation: none;
}

/* line 1472, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link::before {
  content: "組";
  background: #2e7d32;
}

/* line 1477, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link::before {
  content: "撤";
  background: #7f1d1d;
}

/* line 1484, app/assets/stylesheets/schedules.scss */
.tooltip-shokuchou-unassigned {
  color: #ff9800 !important;
  font-weight: 600;
}

/* line 1489, app/assets/stylesheets/schedules.scss */
.schedule-search-open {
  margin-right: 8px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 1498, app/assets/stylesheets/schedules.scss */
.schedule-search-page {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: min(calc(100vh - 5rem), 900px);
  min-height: 320px;
  overflow: hidden;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* line 1511, app/assets/stylesheets/schedules.scss */
.schedule-search-page-top {
  flex-shrink: 0;
  padding: 12px 12px 0;
}

/* line 1516, app/assets/stylesheets/schedules.scss */
.schedule-search-page-toolbar {
  padding: 12px 0 16px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

/* line 1522, app/assets/stylesheets/schedules.scss */
.schedule-search-page-header {
  padding-bottom: 0;
}

/* line 1526, app/assets/stylesheets/schedules.scss */
.schedule-search-page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 1534, app/assets/stylesheets/schedules.scss */
.schedule-search-page-title {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

/* line 1540, app/assets/stylesheets/schedules.scss */
.schedule-search-page-back {
  font-size: 13px;
  padding: 8px 12px;
  white-space: nowrap;
}

/* line 1546, app/assets/stylesheets/schedules.scss */
.schedule-search-page-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0;
}

/* line 1552, app/assets/stylesheets/schedules.scss */
.schedule-search-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 0;
}

/* line 1560, app/assets/stylesheets/schedules.scss */
.schedule-search-page-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  font-size: 16px;
  min-height: 44px;
}

/* line 1568, app/assets/stylesheets/schedules.scss */
.schedule-search-page-submit {
  white-space: nowrap;
  min-height: 44px;
  padding-left: 14px;
  padding-right: 14px;
}

/* line 1575, app/assets/stylesheets/schedules.scss */
.schedule-search-page-hit-count {
  font-size: 13px;
  margin: 8px 0 0;
}

/* line 1580, app/assets/stylesheets/schedules.scss */
.schedule-search-page-results {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 8px 12px 16px;
  -webkit-overflow-scrolling: touch;
}

/* line 1588, app/assets/stylesheets/schedules.scss */
.schedule-search-page-empty {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* line 1594, app/assets/stylesheets/schedules.scss */
.schedule-search-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1600, app/assets/stylesheets/schedules.scss */
.schedule-search-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

/* line 1608, app/assets/stylesheets/schedules.scss */
.schedule-search-card--nearest {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
  scroll-margin-top: 8px;
}

/* line 1614, app/assets/stylesheets/schedules.scss */
.schedule-search-card__date {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

/* line 1621, app/assets/stylesheets/schedules.scss */
.schedule-search-date-link {
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}

/* line 1628, app/assets/stylesheets/schedules.scss */
.schedule-search-card__koumuten {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
  font-weight: 500;
}

/* line 1636, app/assets/stylesheets/schedules.scss */
.schedule-search-card__site {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

/* line 1645, app/assets/stylesheets/schedules.scss */
.schedule-search-card__site-link {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 2px 0;
}

/* line 1652, app/assets/stylesheets/schedules.scss */
.schedule-search-card__address {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

/* line 1659, app/assets/stylesheets/schedules.scss */
.schedule-search-card__address--empty {
  color: #cbd5e1;
}

/* line 1663, app/assets/stylesheets/schedules.scss */
.schedule-search-maps-link {
  color: #2563eb;
  text-decoration: underline;
  word-break: break-word;
  display: inline-block;
  padding: 2px 0;
}

@media (min-width: 768px) {
  /* line 1672, app/assets/stylesheets/schedules.scss */
  .schedule-search-page {
    max-width: 720px;
    border-radius: 8px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
  }
  /* line 1679, app/assets/stylesheets/schedules.scss */
  .schedule-search-page-top,
.schedule-search-page-results {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 1685, app/assets/stylesheets/schedules.scss */
  .schedule-search-card__site {
    font-size: 20px;
  }
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
/* line 17, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header {
  display: grid;
  grid-template-columns: auto 12em 12em;
  align-items: baseline;
  grid-gap: 0 1.5em;
}

/* line 23, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header div {
  display: grid;
  grid-template-columns: auto 1fr;
}

/* line 28, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header div.month_selector {
  align-items: center;
  margin-bottom: 0.5em;
}

/* line 33, app/assets/stylesheets/juchuus.scss */
div#juchuus {
  display: grid;
  grid-template-columns: auto;
  row-gap: 3px;
}

/* line 38, app/assets/stylesheets/juchuus.scss */
div#juchuus div.juchuu_row {
  font-size: 10pt;
  display: grid;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  background-color: #fff;
}

/* line 48, app/assets/stylesheets/juchuus.scss */
div#juchuus div.juchuu_row div {
  padding: 3px;
}

/* line 57, app/assets/stylesheets/juchuus.scss */
div.juchuu_header_row div {
  background-color: #555;
  color: #fff;
  text-align: center;
}

/* line 66, app/assets/stylesheets/juchuus.scss */
div.juchuu_data_row div {
  background-color: #eef;
}

/* line 70, app/assets/stylesheets/juchuus.scss */
a.juchuu_row {
  color: black;
  background-color: white;
  margin: 0px;
  padding: 0px;
}

/* line 76, app/assets/stylesheets/juchuus.scss */
a.juchuu_row :hover {
  color: blue;
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
/* line 17, app/assets/stylesheets/bills.scss */
.bill_row {
  display: grid;
  grid-template-columns: 2fr repeat(7, 1fr) 0.5fr;
  border-bottom: 1px solid gray;
  padding: 0.3em;
}

/* line 23, app/assets/stylesheets/bills.scss */
#project_large_form {
  display: grid;
  grid-template-columns: 4fr 6fr;
  width: calc(100vw - 40px);
  background-color: #eee;
  border: none;
  border-radius: 20px;
  padding: 10px;
  column-gap: 5px;
  row-gap: 5px;
}

/* line 35, app/assets/stylesheets/bills.scss */
.project_form {
  display: grid;
  height: auto;
  background-color: #ddf;
  flex-wrap: wrap;
  padding: .5em;
  column-gap: 2em;
  row-gap: 0.2em;
  border: solid gray 3px;
  border-radius: 10px;
}

/* line 47, app/assets/stylesheets/bills.scss */
.project_form div {
  align-items: flex-start;
}

/* line 49, app/assets/stylesheets/bills.scss */
.project_form div input, .project_form div select {
  font-size: 100%;
}

/* line 53, app/assets/stylesheets/bills.scss */
.project_form div label {
  font-size: 90%;
  font-weight: bold;
  color: blue;
  align-items: flex-start;
}

/* line 1, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement {
  display: grid;
  align-items: stretch;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "h1 c1 button" "h2 c2 button" "h3 c3 button" "h4 c4 button" "h5 c5 button" "h6 c6 button" "h7 c7 button" "h8 c8 button" "h9 c9 button" "h10 c10 button";
}

/* line 4, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement * {
  align-self: stretch;
  align-content: center;
}

/* line 20, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h1 {
  grid-area: h1;
}

/* line 21, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h2 {
  grid-area: h2;
}

/* line 22, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h3 {
  grid-area: h3;
}

/* line 23, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h4 {
  grid-area: h4;
}

/* line 24, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h5 {
  grid-area: h5;
}

/* line 25, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h6 {
  grid-area: h6;
}

/* line 26, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h7 {
  grid-area: h7;
}

/* line 27, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h8 {
  grid-area: h8;
}

/* line 28, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h9 {
  grid-area: h9;
}

/* line 29, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h10 {
  grid-area: h10;
}

/* line 30, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c1 {
  grid-area: c1;
}

/* line 31, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c2 {
  grid-area: c2;
}

/* line 32, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c3 {
  grid-area: c3;
}

/* line 33, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c4 {
  grid-area: c4;
}

/* line 34, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c5 {
  grid-area: c5;
}

/* line 35, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c6 {
  grid-area: c6;
}

/* line 36, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c7 {
  grid-area: c7;
}

/* line 37, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c8 {
  grid-area: c8;
}

/* line 38, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c9 {
  grid-area: c9;
}

/* line 39, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c10 {
  grid-area: c10;
}

/* line 40, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-button {
  grid-area: 1/3/span 9/3;
}

/* line 48, app/assets/stylesheets/procurements.scss */
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  gap: 8px;
  background-color: #28a745;
  color: white;
}

/* line 65, app/assets/stylesheets/procurements.scss */
.button-link:hover:not(:disabled) {
  background-color: #1e7e34;
  transform: translateY(-1px);
}

/* line 70, app/assets/stylesheets/procurements.scss */
.button-link:active:not(:disabled) {
  transform: scale(0.98);
}

/* line 74, app/assets/stylesheets/procurements.scss */
.button-link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 1, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_left {
  display: block;
}

/* line 5, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_timestamp {
  display: inline-block;
  font-size: 75%;
  color: blue;
}

/* line 10, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_right {
  display: inline-block;
}

/* line 14, app/assets/stylesheets/procurement_messages.scss */
.procurement_children_messages {
  display: block;
  margin-left: 2em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
  background-color: #f0f0f0;
}

/* line 22, app/assets/stylesheets/procurement_messages.scss */
.procurement_children_message {
  display: block;
}

/* line 26, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_body {
  margin-bottom: 0.5em;
  margin-left: 1em;
  background-color: #f0f0f0;
  padding: 0.5em;
  border-radius: 0.5em;
}

/* line 33, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_body_sub {
  font-size: 90%;
  margin-left: 2em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
  background-color: #d0d0d0;
  border-radius: 0.5em;
  margin-bottom: 0.2em;
}

/* line 43, app/assets/stylesheets/procurement_messages.scss */
.procurement_messages {
  margin: 0.5em;
  padding: 0.5em;
}

/* line 47, app/assets/stylesheets/procurement_messages.scss */
.procurement_message {
  margin-bottom: 0.5em;
  background-color: #8cf;
  padding: 0.5em;
  border-radius: 0.5em;
}

/* line 54, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_send_button {
  background-color: #4CAF50;
  /* 緑色の背景 */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

/* line 68, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_send_button:hover {
  background-color: #45a049;
  /* ホバー時の色 */
}

/* line 72, app/assets/stylesheets/procurement_messages.scss */
.project-detail-link {
  font-size: 80%;
}

/* line 3, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}

/* line 11, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__spinner {
  color: #6c757d;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 19, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__spinner[hidden] {
  display: none !important;
}

/* line 23, app/assets/stylesheets/daily_reports.scss */
form[data-controller~="form-submit-state"] [data-form-submit-state-target="submitButton"]:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

/* line 28, app/assets/stylesheets/daily_reports.scss */
.file-upload-section {
  margin: 20px 0;
}

/* line 32, app/assets/stylesheets/daily_reports.scss */
.file-upload-area {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

/* line 38, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* line 50, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: #adb5bd;
}

/* line 55, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone.dragover {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #28a745;
  transform: scale(1.02);
}

/* line 61, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone i {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 15px;
  display: block;
}

/* line 68, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone p {
  margin: 10px 0;
  color: #495057;
  font-size: 16px;
}

/* line 74, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone .file-limit {
  font-size: 14px;
  color: #6c757d;
  margin-top: 5px;
}

/* line 80, app/assets/stylesheets/daily_reports.scss */
.file-preview {
  padding: 15px;
  background: #fff;
}

/* line 85, app/assets/stylesheets/daily_reports.scss */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 97, app/assets/stylesheets/daily_reports.scss */
.file-item:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

/* line 102, app/assets/stylesheets/daily_reports.scss */
.file-item.new-file {
  background: #d1ecf1;
  border-color: #bee5eb;
}

/* line 107, app/assets/stylesheets/daily_reports.scss */
.file-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* line 114, app/assets/stylesheets/daily_reports.scss */
.file-thumbnail {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 123, app/assets/stylesheets/daily_reports.scss */
.file-thumbnail .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 129, app/assets/stylesheets/daily_reports.scss */
.file-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border-radius: 4px;
  flex-shrink: 0;
}

/* line 141, app/assets/stylesheets/daily_reports.scss */
.file-icon i {
  font-size: 24px;
  color: #6c757d;
}

/* line 146, app/assets/stylesheets/daily_reports.scss */
.file-details {
  flex: 1;
  min-width: 0;
}

/* line 151, app/assets/stylesheets/daily_reports.scss */
.file-name {
  display: block;
  font-weight: 500;
  color: #212529;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 161, app/assets/stylesheets/daily_reports.scss */
.file-size {
  display: block;
  font-size: 14px;
  color: #6c757d;
}

/* line 167, app/assets/stylesheets/daily_reports.scss */
.file-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* line 173, app/assets/stylesheets/daily_reports.scss */
.file-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 184, app/assets/stylesheets/daily_reports.scss */
.file-actions a:hover {
  transform: translateY(-1px);
}

/* line 188, app/assets/stylesheets/daily_reports.scss */
.file-actions a i {
  font-size: 16px;
}

/* line 192, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="プレビュー"] {
  background: #007bff;
  color: white;
}

/* line 197, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="プレビュー"]:hover {
  background: #0056b3;
}

/* line 201, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="ダウンロード"] {
  background: #28a745;
  color: white;
}

/* line 206, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="ダウンロード"]:hover {
  background: #1e7e34;
}

/* line 210, app/assets/stylesheets/daily_reports.scss */
.file-actions a.delete-file {
  background: #dc3545;
  color: white;
}

/* line 215, app/assets/stylesheets/daily_reports.scss */
.file-actions a.delete-file:hover {
  background: #c82333;
}

@media (max-width: 768px) {
  /* line 221, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone {
    padding: 30px 15px;
  }
  /* line 225, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone i {
    font-size: 36px;
  }
  /* line 229, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone p {
    font-size: 14px;
  }
  /* line 233, app/assets/stylesheets/daily_reports.scss */
  .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* line 239, app/assets/stylesheets/daily_reports.scss */
  .file-actions {
    align-self: flex-end;
  }
  /* line 243, app/assets/stylesheets/daily_reports.scss */
  .file-thumbnail,
.file-icon {
    width: 50px;
    height: 50px;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* line 274, app/assets/stylesheets/daily_reports.scss */
.file-message {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 *= require_tree .
 *= require_self
 */
/* line 17, app/assets/stylesheets/estimate_mails.scss */
label {
  display: block;
  margin-top: 0.5em;
}

/* line 27, app/assets/stylesheets/estimate_mails.scss */
input[type="text"] {
  width: calc(40em);
  display: block;
}

/* line 31, app/assets/stylesheets/estimate_mails.scss */
input[type="text"][readonly] {
  background-color: #f0f0f0;
}

/* line 35, app/assets/stylesheets/estimate_mails.scss */
textarea {
  width: calc(100vw - 5em);
  min-height: 8em;
  display: block;
}

/* line 40, app/assets/stylesheets/estimate_mails.scss */
input[type="submit"] {
  width: 10em;
}

/* line 36, app/assets/stylesheets/application.scss */
a.clickable-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  color: #495057;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 500;
  min-height: 44px;
}

/* line 50, app/assets/stylesheets/application.scss */
a.clickable-link:hover {
  background-color: #e9ecef;
  border-color: #adb5bd;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 57, app/assets/stylesheets/application.scss */
a.clickable-link:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* line 62, app/assets/stylesheets/application.scss */
a.clickable-link:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* line 69, app/assets/stylesheets/application.scss */
a.clickable-link.with-icon {
  gap: 8px;
}

/* line 72, app/assets/stylesheets/application.scss */
a.clickable-link.with-icon i {
  font-size: 14px;
}

/* line 76, app/assets/stylesheets/application.scss */
a.clickable-link.with-icon .action-text {
  font-size: 14px;
}

/* line 82, app/assets/stylesheets/application.scss */
a.clickable-link.primary {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
}

/* line 87, app/assets/stylesheets/application.scss */
a.clickable-link.primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* line 94, app/assets/stylesheets/application.scss */
a.clickable-link.secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

/* line 99, app/assets/stylesheets/application.scss */
a.clickable-link.secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* line 106, app/assets/stylesheets/application.scss */
a.clickable-link.success {
  background-color: #28a745;
  border-color: #28a745;
  color: white;
}

/* line 111, app/assets/stylesheets/application.scss */
a.clickable-link.success:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

/* line 118, app/assets/stylesheets/application.scss */
a.clickable-link.warning {
  background-color: #ffc107;
  border-color: #ffc107;
  color: #212529;
}

/* line 123, app/assets/stylesheets/application.scss */
a.clickable-link.warning:hover {
  background-color: #e0a800;
  border-color: #d39e00;
}

/* line 130, app/assets/stylesheets/application.scss */
a.clickable-link.danger {
  background-color: #dc3545;
  border-color: #dc3545;
  color: white;
}

/* line 135, app/assets/stylesheets/application.scss */
a.clickable-link.danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

/* line 143, app/assets/stylesheets/application.scss */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  gap: 8px;
}

/* line 158, app/assets/stylesheets/application.scss */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 164, app/assets/stylesheets/application.scss */
.btn.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  min-height: 36px;
}

/* line 170, app/assets/stylesheets/application.scss */
.btn.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  min-height: 52px;
}

/* line 177, app/assets/stylesheets/application.scss */
.btn.btn-primary {
  background-color: #007bff;
  color: white;
}

/* line 181, app/assets/stylesheets/application.scss */
.btn.btn-primary:hover:not(:disabled) {
  background-color: #0056b3;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

/* line 188, app/assets/stylesheets/application.scss */
.btn.btn-secondary {
  background-color: #6c757d;
  color: white;
}

/* line 192, app/assets/stylesheets/application.scss */
.btn.btn-secondary:hover:not(:disabled) {
  background-color: #5a6268;
  transform: translateY(-1px);
}

/* line 198, app/assets/stylesheets/application.scss */
.btn.btn-success {
  background-color: #28a745;
  color: white;
}

/* line 202, app/assets/stylesheets/application.scss */
.btn.btn-success:hover:not(:disabled) {
  background-color: #1e7e34;
  transform: translateY(-1px);
}

/* line 208, app/assets/stylesheets/application.scss */
.btn.btn-danger {
  background-color: #dc3545;
  color: white;
}

/* line 212, app/assets/stylesheets/application.scss */
.btn.btn-danger:hover:not(:disabled) {
  background-color: #c82333;
  transform: translateY(-1px);
}

/* line 218, app/assets/stylesheets/application.scss */
.btn.btn-outline {
  background-color: transparent;
  border: 2px solid currentColor;
}

/* line 222, app/assets/stylesheets/application.scss */
.btn.btn-outline:hover:not(:disabled) {
  background-color: currentColor;
  color: white;
}

/* line 230, app/assets/stylesheets/application.scss */
.form-group {
  margin-bottom: 20px;
}

/* line 233, app/assets/stylesheets/application.scss */
.form-group label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 240, app/assets/stylesheets/application.scss */
.form-group label.required::after {
  content: ' *';
  color: #dc3545;
  font-weight: bold;
}

/* line 247, app/assets/stylesheets/application.scss */
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  background-color: white;
  transition: all 0.2s ease;
}

/* line 256, app/assets/stylesheets/application.scss */
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* line 262, app/assets/stylesheets/application.scss */
.form-group input:invalid, .form-group select:invalid, .form-group textarea:invalid {
  border-color: #dc3545;
}

/* line 269, app/assets/stylesheets/application.scss */
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea {
  border-color: #dc3545;
  background-color: #fff5f5;
}

/* line 274, app/assets/stylesheets/application.scss */
.form-group.has-error .error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
}

/* line 283, app/assets/stylesheets/application.scss */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  color: white;
  font-weight: 500;
  z-index: 10000;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease;
}

/* line 296, app/assets/stylesheets/application.scss */
.notification.success {
  background-color: #28a745;
  border-left: 4px solid #1e7e34;
}

/* line 301, app/assets/stylesheets/application.scss */
.notification.warning {
  background-color: #ffc107;
  color: #212529;
  border-left: 4px solid #e0a800;
}

/* line 307, app/assets/stylesheets/application.scss */
.notification.error {
  background-color: #dc3545;
  border-left: 4px solid #c82333;
}

/* line 312, app/assets/stylesheets/application.scss */
.notification.info {
  background-color: #17a2b8;
  border-left: 4px solid #138496;
}

/* line 317, app/assets/stylesheets/application.scss */
.notification .notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

/* line 323, app/assets/stylesheets/application.scss */
.notification .notification-header .notification-title {
  font-weight: 600;
  font-size: 14px;
}

/* line 328, app/assets/stylesheets/application.scss */
.notification .notification-header .notification-close {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
}

/* line 336, app/assets/stylesheets/application.scss */
.notification .notification-header .notification-close:hover {
  opacity: 1;
}

/* line 342, app/assets/stylesheets/application.scss */
.notification .notification-message {
  font-size: 14px;
  line-height: 1.4;
}

/* line 349, app/assets/stylesheets/application.scss */
.card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

/* line 358, app/assets/stylesheets/application.scss */
.card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* line 363, app/assets/stylesheets/application.scss */
.card .card-header {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 16px;
  margin-bottom: 20px;
}

/* line 368, app/assets/stylesheets/application.scss */
.card .card-header h3 {
  margin: 0;
  color: #495057;
  font-size: 18px;
  font-weight: 600;
}

/* line 375, app/assets/stylesheets/application.scss */
.card .card-header .card-subtitle {
  color: #6c757d;
  font-size: 14px;
  margin-top: 4px;
}

/* line 382, app/assets/stylesheets/application.scss */
.card .card-body {
  color: #212529;
  line-height: 1.6;
}

/* line 387, app/assets/stylesheets/application.scss */
.card .card-footer {
  border-top: 1px solid #e9ecef;
  padding-top: 16px;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* line 398, app/assets/stylesheets/application.scss */
.card-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 769px) {
  /* line 398, app/assets/stylesheets/application.scss */
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  /* line 398, app/assets/stylesheets/application.scss */
  .card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* line 413, app/assets/stylesheets/application.scss */
.contact-person-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

/* line 420, app/assets/stylesheets/application.scss */
.contact-person-card .contact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* line 426, app/assets/stylesheets/application.scss */
.contact-person-card .contact-header .contact-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 431, app/assets/stylesheets/application.scss */
.contact-person-card .contact-header .contact-title h4 {
  margin: 0;
  color: #495057;
  font-size: 16px;
  font-weight: 600;
}

/* line 439, app/assets/stylesheets/application.scss */
.contact-person-card .contact-header .contact-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 444, app/assets/stylesheets/application.scss */
.contact-person-card .contact-header .contact-actions select {
  min-width: 200px;
}

/* line 451, app/assets/stylesheets/application.scss */
.contact-person-card .contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 451, app/assets/stylesheets/application.scss */
  .contact-person-card .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* line 462, app/assets/stylesheets/application.scss */
.contact-person-card .contact-form .checkbox-group {
  display: flex;
  align-items: center;
  padding-top: 20px;
}

/* line 467, app/assets/stylesheets/application.scss */
.contact-person-card .contact-form .checkbox-group .checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 0;
}

/* line 474, app/assets/stylesheets/application.scss */
.contact-person-card .contact-form .checkbox-group .checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* line 479, app/assets/stylesheets/application.scss */
.contact-person-card .contact-form .checkbox-group .checkbox-label span {
  font-size: 14px;
  color: #495057;
}

/* line 489, app/assets/stylesheets/application.scss */
.project-form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 489, app/assets/stylesheets/application.scss */
  .project-form-container {
    gap: 16px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (hover: none) and (pointer: coarse) {
  /* line 525, app/assets/stylesheets/application.scss */
  a.clickable-link:active {
    background-color: #e9ecef;
    transform: scale(0.98);
    transition: all 0.1s ease;
  }
  /* line 533, app/assets/stylesheets/application.scss */
  .btn:active:not(:disabled) {
    transform: scale(0.98);
  }
}

@media (max-width: 768px) {
  /* line 541, app/assets/stylesheets/application.scss */
  a.clickable-link {
    padding: 16px 20px;
    font-size: 16px;
    min-height: 48px;
  }
  /* line 546, app/assets/stylesheets/application.scss */
  a.clickable-link:active {
    transform: scale(0.95);
  }
  /* line 551, app/assets/stylesheets/application.scss */
  .btn {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 48px;
  }
  /* line 556, app/assets/stylesheets/application.scss */
  .btn:active {
    transform: scale(0.98);
  }
  /* line 562, app/assets/stylesheets/application.scss */
  .form-group input, .form-group select, .form-group textarea {
    padding: 16px;
    font-size: 16px;
    min-height: 48px;
  }
  /* line 569, app/assets/stylesheets/application.scss */
  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
    font-size: 14px;
  }
}

/* line 582, app/assets/stylesheets/application.scss */
* {
  padding: 0px;
  margin: 0px;
}

/* line 586, app/assets/stylesheets/application.scss */
a {
  text-decoration: none;
  padding: 2px 0px;
  color: #000;
  transition: all 0.2s ease;
}

/* line 593, app/assets/stylesheets/application.scss */
a:visited {
  color: black;
}

/* line 597, app/assets/stylesheets/application.scss */
a:hover {
  color: #fff;
  background-color: black;
}

/* line 604, app/assets/stylesheets/application.scss */
a:not(.clickable-link):not(.btn):hover {
  color: #fff;
  background-color: black;
}

/* line 610, app/assets/stylesheets/application.scss */
table {
  border: 1px solid black;
  border-collapse: collapse;
}

/* line 614, app/assets/stylesheets/application.scss */
tr {
  border: 1px solid black;
}

/* line 617, app/assets/stylesheets/application.scss */
th {
  border: 1px solid black;
}

/* line 620, app/assets/stylesheets/application.scss */
td {
  border: 1px solid black;
}

/* line 624, app/assets/stylesheets/application.scss */
table.list {
  padding: 0.3em;
}

/* line 626, app/assets/stylesheets/application.scss */
table.list tr {
  padding: 0.3em;
}

/* line 628, app/assets/stylesheets/application.scss */
table.list tr th {
  padding: 0.3em;
}

/* line 631, app/assets/stylesheets/application.scss */
table.list tr td {
  padding: 0.3em;
}

/* line 638, app/assets/stylesheets/application.scss */
div.navi {
  display: block;
  width: calc(100% - 5px);
  height: 5em;
  border: 1px solid #555;
  border-radius: 3px 3px 0 0;
  background-color: #555;
  opacity: 0.9;
  float: left;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  margin-bottom: 1em;
  color: white;
}

/* line 652, app/assets/stylesheets/application.scss */
div.navi p {
  float: left;
  margin: 10px;
}

/* line 659, app/assets/stylesheets/application.scss */
div.navi a {
  color: white;
  background-color: #555;
}

/* line 663, app/assets/stylesheets/application.scss */
div.navi a:hover {
  color: black;
  background-color: lightblue;
}

/* line 670, app/assets/stylesheets/application.scss */
.hamburger-menu {
  display: none;
  float: left;
  padding: 10px;
}

@media (max-width: 768px) {
  /* line 678, app/assets/stylesheets/application.scss */
  .navi .hamburger-menu {
    display: block;
  }
  /* line 683, app/assets/stylesheets/application.scss */
  div.navi div.navi-content {
    display: none;
    position: fixed;
    top: 5em;
    left: 0;
    width: 100%;
    height: calc(100vh - 5em);
    background-color: #555;
    z-index: 999;
    overflow-y: auto;
  }
  /* line 696, app/assets/stylesheets/application.scss */
  div.navi div.navi-content.active {
    display: block;
  }
  /* line 701, app/assets/stylesheets/application.scss */
  div.navi div.navi-content div.navi1 {
    display: none;
  }
  /* line 705, app/assets/stylesheets/application.scss */
  div.navi div.navi-content div.navi1 .nav-item {
    display: none;
  }
  /* line 709, app/assets/stylesheets/application.scss */
  div.navi div.navi-content div.navi1 p.nav-item {
    display: none;
  }
  /* line 714, app/assets/stylesheets/application.scss */
  div.navi div.navi-content.active div.navi1 {
    display: block;
    width: 100%;
    float: none;
    padding: 20px;
  }
  /* line 721, app/assets/stylesheets/application.scss */
  div.navi div.navi-content.active div.navi1 .nav-item {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    float: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  /* line 734, app/assets/stylesheets/application.scss */
  div.navi div.navi-content.active div.navi1 p.nav-item {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    float: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
  /* line 747, app/assets/stylesheets/application.scss */
  div.navi div.navi-content.active div.navi1 .nav-item:hover,
div.navi div.navi-content.active div.navi1 p.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: none;
  }
  /* line 754, app/assets/stylesheets/application.scss */
  .navi div.loginuser {
    position: fixed;
    top: 10px;
    right: 60px;
    transform: none;
  }
  /* line 761, app/assets/stylesheets/application.scss */
  .navi div.loginuser .user-action a.clickable-link {
    font-size: 10px;
    padding: 4px 8px;
    min-height: 32px;
  }
}

/* line 768, app/assets/stylesheets/application.scss */
.hamburger-btn {
  position: relative;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

/* line 780, app/assets/stylesheets/application.scss */
.hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* line 784, app/assets/stylesheets/application.scss */
.hamburger-btn:active {
  transform: scale(0.95);
}

/* line 789, app/assets/stylesheets/application.scss */
.hamburger-btn .hamburger-line {
  width: 20px;
  height: 2px;
  background-color: white;
  margin: 4px auto;
  transition: all 0.3s ease;
  display: block;
}

/* line 799, app/assets/stylesheets/application.scss */
.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

/* line 803, app/assets/stylesheets/application.scss */
.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

/* line 807, app/assets/stylesheets/application.scss */
.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 769px) {
  /* line 817, app/assets/stylesheets/application.scss */
  .navi .hamburger-menu {
    display: none;
  }
  /* line 821, app/assets/stylesheets/application.scss */
  .navi .navi-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: auto;
    overflow-y: visible;
  }
  /* line 835, app/assets/stylesheets/application.scss */
  .navi .navi-content div.navi1 {
    float: left;
    display: inline-block;
    width: auto;
    padding: 0;
  }
  /* line 842, app/assets/stylesheets/application.scss */
  .navi .navi-content div.navi1 .nav-item {
    float: left;
    display: inline-block;
    width: auto;
    margin: 10px;
    padding: 16px 20px;
    text-align: center;
    border-bottom: none;
  }
  /* line 852, app/assets/stylesheets/application.scss */
  .navi .navi-content div.navi1 .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: none;
  }
  /* line 857, app/assets/stylesheets/application.scss */
  .navi .navi-content div.navi1 .nav-item.active {
    background-color: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #007bff;
  }
  /* line 862, app/assets/stylesheets/application.scss */
  .navi .navi-content div.navi1 .nav-item {
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
  }
}

/* line 871, app/assets/stylesheets/application.scss */
div.loginuser {
  float: right;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}

/* line 879, app/assets/stylesheets/application.scss */
div.loginuser .user-action {
  display: inline-block;
  margin: 0 4px;
}

/* line 883, app/assets/stylesheets/application.scss */
div.loginuser .user-action a.clickable-link {
  padding: 8px 12px;
  font-size: 12px;
  min-height: 36px;
}

/* line 888, app/assets/stylesheets/application.scss */
div.loginuser .user-action a.clickable-link .action-text {
  display: none;
}

/* line 895, app/assets/stylesheets/application.scss */
div.main_box {
  padding: 10px;
  margin-top: 5em;
}

/* line 902, app/assets/stylesheets/application.scss */
div.partner_row {
  display: grid;
  width: calc(100vw - 20px);
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  margin: 0.3em;
  padding: 0.3em;
  border-bottom: 1px solid #555;
}

/* line 911, app/assets/stylesheets/application.scss */
div.partner_row div {
  display: inline;
  width: 100%;
}

/* line 918, app/assets/stylesheets/application.scss */
a.job_button_link {
  padding: 8px 16px;
  margin: 4px 8px;
  border: 1px solid #6c757d;
  border-radius: 8px;
  background-color: #6c757d;
  color: white;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* line 931, app/assets/stylesheets/application.scss */
a.job_button_link:hover {
  background-color: #5a6268;
  border-color: #545b62;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 938, app/assets/stylesheets/application.scss */
a.job_button_link:active {
  transform: translateY(0);
}

/* line 954, app/assets/stylesheets/application.scss */
label.label {
  font-size: 80%;
  color: blue;
  display: inline-block;
  padding: 3px;
  margin: 3px;
  border-radius: 5px;
  border: 1px gray solid;
  background-color: #eee;
}

/* line 958, app/assets/stylesheets/application.scss */
h1 {
  font-size: clamp(12px, 3vw, 24px);
}

/* line 961, app/assets/stylesheets/application.scss */
h2 {
  font-size: clamp(12px, 3vw, 16px);
}

/* line 966, app/assets/stylesheets/application.scss */
.tooltip {
  position: relative;
  cursor: pointer;
}

/* line 969, app/assets/stylesheets/application.scss */
.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/* line 974, app/assets/stylesheets/application.scss */
.tooltip-text {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -35px;
  display: inline-block;
  padding: 5px;
  white-space: nowrap;
  font-size: 10.5px;
  line-height: 1.3;
  background: #333;
  color: #fff;
  border-radius: 3px;
  transition: 0.3s ease-in;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* line 991, app/assets/stylesheets/application.scss */
.tooltip-text:before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  margin-left: -7px;
  border: 7px solid transparent;
  border-bottom: 7px solid #333;
}

/* line 1002, app/assets/stylesheets/application.scss */
.estimate-action-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 1.5em;
}

/* line 1008, app/assets/stylesheets/application.scss */
.estimate-action-links a.clickable-link,
.estimate-action-links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 16px;
  font-size: 14px;
}

@media (max-width: 768px) {
  /* line 1002, app/assets/stylesheets/application.scss */
  .estimate-action-links {
    gap: 16px;
  }
  /* line 1021, app/assets/stylesheets/application.scss */
  .estimate-action-links a.clickable-link,
.estimate-action-links .btn {
    min-height: 44px;
    padding: 12px 20px;
    font-size: 16px;
  }
}

/* line 1030, app/assets/stylesheets/application.scss */
div.project_estimate {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 0.5em;
  margin: 0.5em;
  width: stretch;
  background-color: #ddd;
}

/* line 1038, app/assets/stylesheets/application.scss */
div.project_estimate p {
  display: inline;
}

/* line 1042, app/assets/stylesheets/application.scss */
div.project_estimate td, div.project_estimate th {
  padding: 3px;
}

/* line 1045, app/assets/stylesheets/application.scss */
div.project_estimate td {
  background-color: white;
}

/* line 1050, app/assets/stylesheets/application.scss */
div.project_estimate_order {
  display: grid;
}

/* line 1054, app/assets/stylesheets/application.scss */
div.project_estimate_order div {
  display: inline-block;
}

/* line 1060, app/assets/stylesheets/application.scss */
div.border_label_with_contents label {
  font-size: 80%;
  color: blue;
  display: inline-block;
  padding: 3px;
  margin: 3px;
  border-radius: 5px;
  border: 1px gray solid;
  background-color: #eee;
  display: inline-block;
}

/* line 1064, app/assets/stylesheets/application.scss */
div.border_label_with_contents p {
  display: inline-block;
  width: stretch;
}

/* line 1070, app/assets/stylesheets/application.scss */
div.daily_report {
  border: 1px solid gray;
  padding: 3px;
  background-color: #def;
}

/* line 1075, app/assets/stylesheets/application.scss */
div.daily_report div {
  display: inline-block;
  margin-right: 2em;
}

/* line 1078, app/assets/stylesheets/application.scss */
div.daily_report div p {
  display: inline-block;
}

/* line 1084, app/assets/stylesheets/application.scss */
span.tani {
  font-size: 80%;
  align-self: baseline;
}

/* line 1101, app/assets/stylesheets/application.scss */
.genba_info_form {
  display: grid;
  height: auto;
  background-color: lightgreen;
  flex-wrap: wrap;
  padding: .5em;
  column-gap: 2em;
  row-gap: 0.2em;
  border: solid gray 3px;
  border-radius: 10px;
}

/* line 1113, app/assets/stylesheets/application.scss */
.genba_info_form div {
  align-items: flex-start;
}

/* line 1115, app/assets/stylesheets/application.scss */
.genba_info_form div input, .genba_info_form div select {
  font-size: 100%;
}

/* line 1119, app/assets/stylesheets/application.scss */
.genba_info_form div label {
  font-size: 90%;
  font-weight: bold;
  color: blue;
  align-items: flex-start;
}

/* line 1128, app/assets/stylesheets/application.scss */
.fa-solid-color {
  color: lightseagreen;
  padding-right: 0.3em;
  padding-left: 0.3em;
  font-size: 125%;
}

/* line 1137, app/assets/stylesheets/application.scss */
.project_summary > div {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
}

/* line 1142, app/assets/stylesheets/application.scss */
.project_summary > div label {
  font-weight: bold;
  color: #333;
  margin-right: 5px;
  font-size: 14px;
}

/* line 1149, app/assets/stylesheets/application.scss */
.project_summary > div p {
  margin: 0;
  color: #212529;
  font-size: 14px;
  display: inline;
}

/* line 1157, app/assets/stylesheets/application.scss */
.project_summary > div a {
  color: #007bff;
  text-decoration: none;
}

/* line 1161, app/assets/stylesheets/application.scss */
.project_summary > div a:hover {
  text-decoration: underline;
}

/* line 1168, app/assets/stylesheets/application.scss */
.project_summary > div:has(h4) {
  display: block;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* line 1173, app/assets/stylesheets/application.scss */
.project_summary > div:has(h4) h4 {
  color: #495057;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

/* line 1182, app/assets/stylesheets/application.scss */
.project_summary > div > div[style*="grid"] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

/* line 1188, app/assets/stylesheets/application.scss */
.project_summary > div > div[style*="grid"] > div {
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  padding: 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1195, app/assets/stylesheets/application.scss */
.project_summary > div > div[style*="grid"] > div:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.2s ease;
}

/* line 1203, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) {
  display: block;
  margin-top: 20px;
}

/* line 1207, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) label.label {
  background-color: #007bff;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

/* line 1218, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) ul {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

/* line 1223, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) ul li {
  display: inline-block;
  margin: 5px 10px 5px 0;
  padding: 8px 12px;
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

/* line 1231, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) ul li img {
  border-radius: 4px;
  border: 1px solid #dee2e6;
}

/* line 1236, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) ul li a {
  color: #007bff;
  text-decoration: none;
}

/* line 1240, app/assets/stylesheets/application.scss */
.project_summary > div:has(label.label) ul li a:hover {
  text-decoration: underline;
}

/* line 1253, app/assets/stylesheets/application.scss */
.project-detail-container .card-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 1253, app/assets/stylesheets/application.scss */
  .project-detail-container .card-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 1265, app/assets/stylesheets/application.scss */
.project-detail-container .project-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

/* line 1272, app/assets/stylesheets/application.scss */
.project-detail-container .project-summary-grid .summary-item label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 1280, app/assets/stylesheets/application.scss */
.project-detail-container .project-summary-grid .summary-item span {
  color: #212529;
  font-size: 16px;
}

/* line 1285, app/assets/stylesheets/application.scss */
.project-detail-container .project-summary-grid .summary-item.full-width {
  grid-column: 1 / -1;
}

/* line 1291, app/assets/stylesheets/application.scss */
.project-detail-container .contact-section {
  margin-bottom: 30px;
}

/* line 1294, app/assets/stylesheets/application.scss */
.project-detail-container .contact-section h4 {
  margin-bottom: 20px;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

/* line 1301, app/assets/stylesheets/application.scss */
.project-detail-container .contact-section .contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* line 1307, app/assets/stylesheets/application.scss */
.project-detail-container .contact-section .contact-method {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #28a745;
}

/* line 1314, app/assets/stylesheets/application.scss */
.project-detail-container .contact-section .contact-method.no-method {
  color: #dc3545;
}

/* line 1320, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section {
  margin-bottom: 30px;
}

/* line 1323, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section h4 {
  margin-bottom: 20px;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

/* line 1330, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section .attachments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

/* line 1335, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section .attachments-grid .attachment-item {
  text-align: center;
}

/* line 1338, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section .attachments-grid .attachment-item .attachment-image {
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* line 1345, app/assets/stylesheets/application.scss */
.project-detail-container .attachments-section .no-attachments {
  color: #6c757d;
  font-style: italic;
  text-align: center;
  padding: 20px;
}

/* line 1353, app/assets/stylesheets/application.scss */
.project-detail-container .section-divider {
  margin: 40px 0;
  border: none;
  border-top: 2px solid #e9ecef;
}

/* line 1359, app/assets/stylesheets/application.scss */
.project-detail-container .estimate-actions {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* line 1366, app/assets/stylesheets/application.scss */
.project-detail-container .estimate-actions .form-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

/* line 1374, app/assets/stylesheets/application.scss */
.project-detail-container .estimates-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* line 1382, app/assets/stylesheets/application.scss */
.project-estimate-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1390, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 1390, app/assets/stylesheets/application.scss */
  .project-estimate-card .estimate-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 1403, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-checkbox {
  flex-shrink: 0;
}

/* line 1406, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-checkbox .estimate-checkbox-input {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* line 1413, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-main-info {
  flex: 1;
}

/* line 1416, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-main-info .estimate-title-section {
  margin-bottom: 15px;
}

/* line 1419, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-main-info .estimate-title-section h3 {
  margin: 0;
  color: #495057;
  font-size: 18px;
}

/* line 1426, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-main-info .estimate-title-section .clickable-link h3 {
  color: white;
}

/* line 1432, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-status-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 15px;
}

/* line 1439, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-status-section .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* line 1448, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-status-section .status-badge.status-juchuu {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* line 1454, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-status-section .status-badge.status-sicchuu {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* line 1460, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-status-section .status-badge.status-unknown {
  background-color: #e2e3e5;
  color: #383d41;
  border: 1px solid #d6d8db;
}

/* line 1468, app/assets/stylesheets/application.scss */
.project-estimate-card .status-change-section {
  margin-bottom: 15px;
}

/* line 1471, app/assets/stylesheets/application.scss */
.project-estimate-card .status-change-section .form-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
  font-size: 14px;
}

/* line 1479, app/assets/stylesheets/application.scss */
.project-estimate-card .status-change-section .status-change-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* line 1486, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

/* line 1496, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-details .detail-item label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
  font-size: 14px;
}

/* line 1504, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-details .detail-item span {
  color: #212529;
  font-size: 16px;
}

/* line 1508, app/assets/stylesheets/application.scss */
.project-estimate-card .estimate-details .detail-item span.amount {
  font-weight: 600;
  color: #28a745;
}

/* line 1517, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-section,
.project-estimate-card .procurements-and-expenses .expenses-section {
  margin-bottom: 25px;
}

/* line 1521, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-section .section-header,
.project-estimate-card .procurements-and-expenses .expenses-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

/* line 1527, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-section .section-header h4,
.project-estimate-card .procurements-and-expenses .expenses-section .section-header h4 {
  margin: 0;
  color: #495057;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  /* line 1521, app/assets/stylesheets/application.scss */
  .project-estimate-card .procurements-and-expenses .procurements-section .section-header,
.project-estimate-card .procurements-and-expenses .expenses-section .section-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 1541, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* line 1546, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item {
  text-decoration: none;
  color: inherit;
}

/* line 1550, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item:hover {
  transform: translateY(-2px);
  transition: transform 0.2s ease;
}

/* line 1555, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
}

/* line 1561, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

/* line 1569, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-item label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 5px;
  font-size: 14px;
}

/* line 1577, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-item span {
  color: #212529;
  font-size: 16px;
}

/* line 1581, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-item span.amount {
  font-weight: 600;
  color: #28a745;
}

/* line 1587, app/assets/stylesheets/application.scss */
.project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-item.full-width {
  grid-column: 1 / -1;
}

/* line 1598, app/assets/stylesheets/application.scss */
.procurements-grid {
  display: grid;
  gap: 20px;
}

/* line 1603, app/assets/stylesheets/application.scss */
.procurement-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 1611, app/assets/stylesheets/application.scss */
.procurement-card .procurement-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 20px;
}

@media (max-width: 768px) {
  /* line 1611, app/assets/stylesheets/application.scss */
  .procurement-card .procurement-header {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 1624, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info {
  flex: 1;
}

/* line 1627, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info .project-estimate-info {
  margin-bottom: 15px;
}

/* line 1630, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info .project-estimate-info .form-label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 1638, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info .project-estimate-info .project-name {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
}

/* line 1644, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info .project-estimate-info .empty-label {
  color: #adb5bd;
  font-style: italic;
  font-size: 16px;
}

/* line 1652, app/assets/stylesheets/application.scss */
.procurement-card .procurement-main-info .procurement-type .type-badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: #007bff;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* line 1664, app/assets/stylesheets/application.scss */
.procurement-card .procurement-actions {
  flex-shrink: 0;
}

/* line 1667, app/assets/stylesheets/application.scss */
.procurement-card .procurement-actions .action-disabled {
  padding: 8px 16px;
  background-color: #e9ecef;
  color: #6c757d;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

/* line 1678, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

/* line 1685, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 1693, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item span {
  color: #212529;
  font-size: 16px;
}

/* line 1697, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item span.amount {
  font-weight: 600;
  color: #28a745;
}

/* line 1702, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item span.empty-label {
  color: #adb5bd;
  font-style: italic;
  font-size: 14px;
}

/* line 1709, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item.full-width {
  grid-column: 1 / -1;
}

/* line 1714, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px;
  background-color: #f8f9fa;
  border-radius: 6px;
}

/* line 1723, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .schedule-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* line 1730, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .schedule-type {
  font-weight: 600;
  color: #495057;
  min-width: 80px;
}

/* line 1736, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .schedule-date {
  color: #212529;
}

/* line 1740, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.3em 0.6em;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 500;
}

/* line 1749, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .status-badge i {
  font-size: 0.9em;
}

/* line 1753, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .status-badge.status-not-agreed {
  background-color: #fff3cd;
  color: #dc3545;
  border: 1px solid #ff9800;
}

/* line 1761, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status {
  margin-top: 0.25em;
}

/* line 1764, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.8em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 500;
}

/* line 1773, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-badge i {
  font-size: 1em;
}

/* line 1778, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-not-agreed {
  background-color: #fff3cd;
  color: #dc3545;
  border: 2px solid #ff9800;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 1785, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-eip-agreed {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* line 1790, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-asiba-agreed {
  background-color: #ffeb9c;
  color: #856404;
}

/* line 1795, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .schedule-list .schedule-item .agreement-status .status-both-agreed {
  background-color: #d4edda;
  color: #155724;
}

@keyframes pulse-attention {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* line 1812, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .details-grid .detail-item .detail-summary {
  color: #212529;
  font-size: 16px;
  line-height: 1.5;
}

/* line 1821, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .attachments-section h5 {
  margin-bottom: 15px;
  color: #495057;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 8px;
}

/* line 1828, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .attachments-section .attachments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

/* line 1833, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .attachments-section .attachments-grid .attachment-item {
  text-align: center;
}

/* line 1836, app/assets/stylesheets/application.scss */
.procurement-card .procurement-details .attachments-section .attachments-grid .attachment-item .attachment-image {
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* line 1846, app/assets/stylesheets/application.scss */
.procurement-messages-section {
  margin-top: 30px;
}

/* line 1850, app/assets/stylesheets/application.scss */
.no-procurements {
  text-align: center;
  padding: 40px 20px;
  color: #6c757d;
}

/* line 1855, app/assets/stylesheets/application.scss */
.no-procurements p {
  margin: 0 0 10px 0;
  font-size: 16px;
}

/* line 1859, app/assets/stylesheets/application.scss */
.no-procurements p:last-child {
  font-size: 14px;
  color: #adb5bd;
}

/* line 1867, app/assets/stylesheets/application.scss */
.schedule-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

/* line 1878, app/assets/stylesheets/application.scss */
.schedule-controls .control-group label {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 14px;
}

/* line 1886, app/assets/stylesheets/application.scss */
.schedule-controls .control-group .period-selector,
.schedule-controls .control-group .user-selector,
.schedule-controls .control-group .week-navigation {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  /* line 1886, app/assets/stylesheets/application.scss */
  .schedule-controls .control-group .period-selector,
.schedule-controls .control-group .user-selector,
.schedule-controls .control-group .week-navigation {
    flex-direction: column;
    align-items: stretch;
  }
}

/* line 1901, app/assets/stylesheets/application.scss */
.schedule-controls .control-group .user-selector .btn {
  white-space: nowrap;
  min-width: fit-content;
  flex-shrink: 0;
}

/* line 1908, app/assets/stylesheets/application.scss */
.schedule-controls .control-group .current-week {
  font-size: 14px;
  color: #007bff;
}

/* line 1915, app/assets/stylesheets/application.scss */
.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

/* line 1923, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell {
  background: white;
  padding: 10px;
  min-height: 120px;
}

/* line 1928, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell p {
  margin: 0 0 8px 0;
  font-size: 14px;
}

/* line 1932, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell p.today {
  background-color: #007bff;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
}

/* line 1942, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .date-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

/* line 1947, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .date-link:hover {
  text-decoration: underline;
}

/* line 1952, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .project-schedule-item {
  text-decoration: none;
  color: inherit;
}

/* line 1956, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .project-schedule-item p {
  background-color: #28a745;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 5px;
}

/* line 1966, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* line 1971, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item {
  background-color: #cfc;
  margin-bottom: 5px;
  border-radius: 4px;
}

/* line 1976, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link {
  display: block;
  padding: 4px 8px;
  color: #212529;
  text-decoration: none;
  font-size: 12px;
}

/* line 1983, app/assets/stylesheets/application.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link:hover {
  background-color: #b8e6b8;
}

/* line 1992, app/assets/stylesheets/application.scss */
.schedule-tooltip {
  position: absolute;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-width: 300px;
}

/* line 2002, app/assets/stylesheets/application.scss */
.schedule-tooltip .tooltip-header {
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

/* line 2011, app/assets/stylesheets/application.scss */
.schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* line 2016, app/assets/stylesheets/application.scss */
.schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: 600;
  color: #495057;
  min-width: 80px;
}

/* line 2022, app/assets/stylesheets/application.scss */
.schedule-tooltip .tooltip-content .tooltip-row .value {
  color: #ffffff;
  text-align: right;
}

@media (max-width: 768px) {
  /* line 2033, app/assets/stylesheets/application.scss */
  .project-detail-container .project-summary-grid {
    grid-template-columns: 1fr;
  }
  /* line 2037, app/assets/stylesheets/application.scss */
  .project-detail-container .contact-cards-grid {
    grid-template-columns: 1fr;
  }
  /* line 2041, app/assets/stylesheets/application.scss */
  .project-detail-container .attachments-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  /* line 2047, app/assets/stylesheets/application.scss */
  .project-estimate-card .estimate-header {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2052, app/assets/stylesheets/application.scss */
  .project-estimate-card .estimate-status-section {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2057, app/assets/stylesheets/application.scss */
  .project-estimate-card .status-change-buttons {
    flex-direction: column;
  }
  /* line 2061, app/assets/stylesheets/application.scss */
  .project-estimate-card .estimate-details {
    grid-template-columns: 1fr;
  }
  /* line 2068, app/assets/stylesheets/application.scss */
  .project-estimate-card .procurements-and-expenses .procurements-section .section-header,
.project-estimate-card .procurements-and-expenses .expenses-section .section-header {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2077, app/assets/stylesheets/application.scss */
  .project-estimate-card .procurements-and-expenses .procurements-list .procurement-item .procurement-info .info-row {
    grid-template-columns: 1fr;
  }
  /* line 2087, app/assets/stylesheets/application.scss */
  .procurement-card .procurement-header {
    flex-direction: column;
    align-items: stretch;
  }
  /* line 2093, app/assets/stylesheets/application.scss */
  .procurement-card .procurement-details .details-grid {
    grid-template-columns: 1fr;
  }
  /* line 2097, app/assets/stylesheets/application.scss */
  .procurement-card .procurement-details .attachments-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
  /* line 2103, app/assets/stylesheets/application.scss */
  .schedule-controls {
    grid-template-columns: 1fr;
  }
  /* line 2107, app/assets/stylesheets/application.scss */
  .schedule-calendar {
    grid-template-columns: 1fr;
  }
  /* line 2110, app/assets/stylesheets/application.scss */
  .schedule-calendar .calendar-cell {
    min-height: auto;
  }
}

/* line 2117, app/assets/stylesheets/application.scss */
.file-upload-section {
  margin: 20px 0;
}

/* line 2121, app/assets/stylesheets/application.scss */
.file-upload-area {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

/* line 2127, app/assets/stylesheets/application.scss */
.file-drop-zone {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* line 2139, app/assets/stylesheets/application.scss */
.file-drop-zone:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: #adb5bd;
}

/* line 2144, app/assets/stylesheets/application.scss */
.file-drop-zone.dragover {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #28a745;
  transform: scale(1.02);
}

/* line 2150, app/assets/stylesheets/application.scss */
.file-drop-zone i {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 15px;
  display: block;
}

/* line 2157, app/assets/stylesheets/application.scss */
.file-drop-zone p {
  margin: 10px 0;
  color: #495057;
  font-size: 16px;
}

/* line 2163, app/assets/stylesheets/application.scss */
.file-drop-zone .file-limit {
  font-size: 14px;
  color: #6c757d;
  margin-top: 5px;
}

/* line 2169, app/assets/stylesheets/application.scss */
.file-preview {
  padding: 15px;
  background: #fff;
}

/* line 2174, app/assets/stylesheets/application.scss */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 2186, app/assets/stylesheets/application.scss */
.file-item:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

/* line 2191, app/assets/stylesheets/application.scss */
.file-item.new-file {
  background: #d1ecf1;
  border-color: #bee5eb;
}

/* line 2196, app/assets/stylesheets/application.scss */
.file-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* line 2203, app/assets/stylesheets/application.scss */
.file-thumbnail {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 2212, app/assets/stylesheets/application.scss */
.file-thumbnail .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 2218, app/assets/stylesheets/application.scss */
.file-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border-radius: 4px;
  flex-shrink: 0;
}

/* line 2230, app/assets/stylesheets/application.scss */
.file-icon i {
  font-size: 24px;
  color: #6c757d;
}

/* line 2235, app/assets/stylesheets/application.scss */
.file-details {
  flex: 1;
  min-width: 0;
}

/* line 2240, app/assets/stylesheets/application.scss */
.file-name {
  display: block;
  font-weight: 500;
  color: #212529;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 2250, app/assets/stylesheets/application.scss */
.file-size {
  display: block;
  font-size: 14px;
  color: #6c757d;
}

/* line 2256, app/assets/stylesheets/application.scss */
.file-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* line 2262, app/assets/stylesheets/application.scss */
.file-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 2273, app/assets/stylesheets/application.scss */
.file-actions a:hover {
  transform: translateY(-1px);
}

/* line 2277, app/assets/stylesheets/application.scss */
.file-actions a i {
  font-size: 16px;
}

/* line 2281, app/assets/stylesheets/application.scss */
.file-actions a[title="プレビュー"] {
  background: #007bff;
  color: white;
}

/* line 2286, app/assets/stylesheets/application.scss */
.file-actions a[title="プレビュー"]:hover {
  background: #0056b3;
}

/* line 2290, app/assets/stylesheets/application.scss */
.file-actions a[title="ダウンロード"] {
  background: #28a745;
  color: white;
}

/* line 2295, app/assets/stylesheets/application.scss */
.file-actions a[title="ダウンロード"]:hover {
  background: #1e7e34;
}

/* line 2299, app/assets/stylesheets/application.scss */
.file-actions a.delete-file {
  background: #dc3545;
  color: white;
}

/* line 2304, app/assets/stylesheets/application.scss */
.file-actions a.delete-file:hover {
  background: #c82333;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ===== 作業日程 承認状態バッジ（共通: show/edit 両方）===== */
/* line 2332, app/assets/stylesheets/application.scss */
.agreement-status {
  margin-top: 0.25em;
}

/* line 2335, app/assets/stylesheets/application.scss */
.agreement-status .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.8em;
  border-radius: 4px;
  font-size: 0.85em;
  font-weight: 500;
}

/* line 2344, app/assets/stylesheets/application.scss */
.agreement-status .status-badge i {
  font-size: 1em;
}

/* line 2347, app/assets/stylesheets/application.scss */
.agreement-status .status-not-agreed {
  background-color: #fff3cd;
  color: #dc3545;
  border: 2px solid #ff9800;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 2353, app/assets/stylesheets/application.scss */
.agreement-status .status-eip-agreed {
  background-color: #d1ecf1;
  color: #0c5460;
}

/* line 2357, app/assets/stylesheets/application.scss */
.agreement-status .status-asiba-agreed {
  background-color: #ffeb9c;
  color: #856404;
}

/* line 2361, app/assets/stylesheets/application.scss */
.agreement-status .status-both-agreed {
  background-color: #d4edda;
  color: #155724;
}

@keyframes pulse-attention {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* 削除対象マーク（作業日程） */
/* line 2372, app/assets/stylesheets/application.scss */
.sagyou-schedule-item.marked-for-deletion {
  background-color: #fdecea;
  /* 薄い赤 */
  border-color: #f5c2c7;
  opacity: 0.85;
}

/* line 2377, app/assets/stylesheets/application.scss */
.sagyou-schedule-item.marked-for-deletion *:not(label):not(input[type='checkbox']) {
  text-decoration: line-through;
}

/* line 2382, app/assets/stylesheets/application.scss */
.file-message {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 2387, app/assets/stylesheets/application.scss */
#calendar-prev-month,
#calendar-next-month,
#calendar-current-month {
  font-size: 12px !important;
  padding: 4px 8px !important;
  min-height: 32px !important;
  min-width: auto !important;
}
@charset "UTF-8";
/* line 3, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 0.5rem;
}

/* line 11, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__spinner {
  color: #6c757d;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* line 19, app/assets/stylesheets/daily_reports.scss */
.form-submit-state__spinner[hidden] {
  display: none !important;
}

/* line 23, app/assets/stylesheets/daily_reports.scss */
form[data-controller~="form-submit-state"] [data-form-submit-state-target="submitButton"]:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

/* line 28, app/assets/stylesheets/daily_reports.scss */
.file-upload-section {
  margin: 20px 0;
}

/* line 32, app/assets/stylesheets/daily_reports.scss */
.file-upload-area {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

/* line 38, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
  border-radius: 8px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

/* line 50, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  border-color: #adb5bd;
}

/* line 55, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone.dragover {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #28a745;
  transform: scale(1.02);
}

/* line 61, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone i {
  font-size: 48px;
  color: #6c757d;
  margin-bottom: 15px;
  display: block;
}

/* line 68, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone p {
  margin: 10px 0;
  color: #495057;
  font-size: 16px;
}

/* line 74, app/assets/stylesheets/daily_reports.scss */
.file-drop-zone .file-limit {
  font-size: 14px;
  color: #6c757d;
  margin-top: 5px;
}

/* line 80, app/assets/stylesheets/daily_reports.scss */
.file-preview {
  padding: 15px;
  background: #fff;
}

/* line 85, app/assets/stylesheets/daily_reports.scss */
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  margin: 8px 0;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* line 97, app/assets/stylesheets/daily_reports.scss */
.file-item:hover {
  background: #e9ecef;
  border-color: #dee2e6;
}

/* line 102, app/assets/stylesheets/daily_reports.scss */
.file-item.new-file {
  background: #d1ecf1;
  border-color: #bee5eb;
}

/* line 107, app/assets/stylesheets/daily_reports.scss */
.file-info {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

/* line 114, app/assets/stylesheets/daily_reports.scss */
.file-thumbnail {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

/* line 123, app/assets/stylesheets/daily_reports.scss */
.file-thumbnail .thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 129, app/assets/stylesheets/daily_reports.scss */
.file-icon {
  width: 60px;
  height: 60px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  border-radius: 4px;
  flex-shrink: 0;
}

/* line 141, app/assets/stylesheets/daily_reports.scss */
.file-icon i {
  font-size: 24px;
  color: #6c757d;
}

/* line 146, app/assets/stylesheets/daily_reports.scss */
.file-details {
  flex: 1;
  min-width: 0;
}

/* line 151, app/assets/stylesheets/daily_reports.scss */
.file-name {
  display: block;
  font-weight: 500;
  color: #212529;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 161, app/assets/stylesheets/daily_reports.scss */
.file-size {
  display: block;
  font-size: 14px;
  color: #6c757d;
}

/* line 167, app/assets/stylesheets/daily_reports.scss */
.file-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* line 173, app/assets/stylesheets/daily_reports.scss */
.file-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 184, app/assets/stylesheets/daily_reports.scss */
.file-actions a:hover {
  transform: translateY(-1px);
}

/* line 188, app/assets/stylesheets/daily_reports.scss */
.file-actions a i {
  font-size: 16px;
}

/* line 192, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="プレビュー"] {
  background: #007bff;
  color: white;
}

/* line 197, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="プレビュー"]:hover {
  background: #0056b3;
}

/* line 201, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="ダウンロード"] {
  background: #28a745;
  color: white;
}

/* line 206, app/assets/stylesheets/daily_reports.scss */
.file-actions a[title="ダウンロード"]:hover {
  background: #1e7e34;
}

/* line 210, app/assets/stylesheets/daily_reports.scss */
.file-actions a.delete-file {
  background: #dc3545;
  color: white;
}

/* line 215, app/assets/stylesheets/daily_reports.scss */
.file-actions a.delete-file:hover {
  background: #c82333;
}

@media (max-width: 768px) {
  /* line 221, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone {
    padding: 30px 15px;
  }
  /* line 225, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone i {
    font-size: 36px;
  }
  /* line 229, app/assets/stylesheets/daily_reports.scss */
  .file-drop-zone p {
    font-size: 14px;
  }
  /* line 233, app/assets/stylesheets/daily_reports.scss */
  .file-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* line 239, app/assets/stylesheets/daily_reports.scss */
  .file-actions {
    align-self: flex-end;
  }
  /* line 243, app/assets/stylesheets/daily_reports.scss */
  .file-thumbnail,
.file-icon {
    width: 50px;
    height: 50px;
  }
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* line 274, app/assets/stylesheets/daily_reports.scss */
.file-message {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 17, app/assets/stylesheets/bills.scss */
.bill_row {
  display: grid;
  grid-template-columns: 2fr repeat(7, 1fr) 0.5fr;
  border-bottom: 1px solid gray;
  padding: 0.3em;
}

/* line 23, app/assets/stylesheets/bills.scss */
#project_large_form {
  display: grid;
  grid-template-columns: 4fr 6fr;
  width: calc(100vw - 40px);
  background-color: #eee;
  border: none;
  border-radius: 20px;
  padding: 10px;
  column-gap: 5px;
  row-gap: 5px;
}

/* line 35, app/assets/stylesheets/bills.scss */
.project_form {
  display: grid;
  height: auto;
  background-color: #ddf;
  flex-wrap: wrap;
  padding: .5em;
  column-gap: 2em;
  row-gap: 0.2em;
  border: solid gray 3px;
  border-radius: 10px;
}

/* line 47, app/assets/stylesheets/bills.scss */
.project_form div {
  align-items: flex-start;
}

/* line 49, app/assets/stylesheets/bills.scss */
.project_form div input, .project_form div select {
  font-size: 100%;
}

/* line 53, app/assets/stylesheets/bills.scss */
.project_form div label {
  font-size: 90%;
  font-weight: bold;
  color: blue;
  align-items: flex-start;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 17, app/assets/stylesheets/estimate_mails.scss */
label {
  display: block;
  margin-top: 0.5em;
}

/* line 27, app/assets/stylesheets/estimate_mails.scss */
input[type="text"] {
  width: calc(40em);
  display: block;
}

/* line 31, app/assets/stylesheets/estimate_mails.scss */
input[type="text"][readonly] {
  background-color: #f0f0f0;
}

/* line 35, app/assets/stylesheets/estimate_mails.scss */
textarea {
  width: calc(100vw - 5em);
  min-height: 8em;
  display: block;
}

/* line 40, app/assets/stylesheets/estimate_mails.scss */
input[type="submit"] {
  width: 10em;
}
@charset "UTF-8";
/* line 1, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_left {
  display: block;
}

/* line 5, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_timestamp {
  display: inline-block;
  font-size: 75%;
  color: blue;
}

/* line 10, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_header_right {
  display: inline-block;
}

/* line 14, app/assets/stylesheets/procurement_messages.scss */
.procurement_children_messages {
  display: block;
  margin-left: 2em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
  background-color: #f0f0f0;
}

/* line 22, app/assets/stylesheets/procurement_messages.scss */
.procurement_children_message {
  display: block;
}

/* line 26, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_body {
  margin-bottom: 0.5em;
  margin-left: 1em;
  background-color: #f0f0f0;
  padding: 0.5em;
  border-radius: 0.5em;
}

/* line 33, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_body_sub {
  font-size: 90%;
  margin-left: 2em;
  border-left: 1px solid #ccc;
  padding-left: 1em;
  background-color: #d0d0d0;
  border-radius: 0.5em;
  margin-bottom: 0.2em;
}

/* line 43, app/assets/stylesheets/procurement_messages.scss */
.procurement_messages {
  margin: 0.5em;
  padding: 0.5em;
}

/* line 47, app/assets/stylesheets/procurement_messages.scss */
.procurement_message {
  margin-bottom: 0.5em;
  background-color: #8cf;
  padding: 0.5em;
  border-radius: 0.5em;
}

/* line 54, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_send_button {
  background-color: #4CAF50;
  /* 緑色の背景 */
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
}

/* line 68, app/assets/stylesheets/procurement_messages.scss */
.procurement_message_send_button:hover {
  background-color: #45a049;
  /* ホバー時の色 */
}

/* line 72, app/assets/stylesheets/procurement_messages.scss */
.project-detail-link {
  font-size: 80%;
}
/* line 1, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement {
  display: grid;
  align-items: stretch;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "h1 c1 button" "h2 c2 button" "h3 c3 button" "h4 c4 button" "h5 c5 button" "h6 c6 button" "h7 c7 button" "h8 c8 button" "h9 c9 button" "h10 c10 button";
}

/* line 4, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement * {
  align-self: stretch;
  align-content: center;
}

/* line 20, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h1 {
  grid-area: h1;
}

/* line 21, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h2 {
  grid-area: h2;
}

/* line 22, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h3 {
  grid-area: h3;
}

/* line 23, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h4 {
  grid-area: h4;
}

/* line 24, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h5 {
  grid-area: h5;
}

/* line 25, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h6 {
  grid-area: h6;
}

/* line 26, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h7 {
  grid-area: h7;
}

/* line 27, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h8 {
  grid-area: h8;
}

/* line 28, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h9 {
  grid-area: h9;
}

/* line 29, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-h10 {
  grid-area: h10;
}

/* line 30, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c1 {
  grid-area: c1;
}

/* line 31, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c2 {
  grid-area: c2;
}

/* line 32, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c3 {
  grid-area: c3;
}

/* line 33, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c4 {
  grid-area: c4;
}

/* line 34, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c5 {
  grid-area: c5;
}

/* line 35, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c6 {
  grid-area: c6;
}

/* line 36, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c7 {
  grid-area: c7;
}

/* line 37, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c8 {
  grid-area: c8;
}

/* line 38, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c9 {
  grid-area: c9;
}

/* line 39, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-c10 {
  grid-area: c10;
}

/* line 40, app/assets/stylesheets/procurements.scss */
div.project_estimate_in_procurement .grid-button {
  grid-area: 1/3/span 9/3;
}

/* line 48, app/assets/stylesheets/procurements.scss */
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
  gap: 8px;
  background-color: #28a745;
  color: white;
}

/* line 65, app/assets/stylesheets/procurements.scss */
.button-link:hover:not(:disabled) {
  background-color: #1e7e34;
  transform: translateY(-1px);
}

/* line 70, app/assets/stylesheets/procurements.scss */
.button-link:active:not(:disabled) {
  transform: scale(0.98);
}

/* line 74, app/assets/stylesheets/procurements.scss */
.button-link:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* line 4, app/assets/stylesheets/projects.scss */
#project_large_form {
  display: grid;
  grid-template-columns: auto;
  width: calc(100% - 40px);
  background-color: #eee;
  border: none;
  border-radius: 20px;
  padding: 10px;
  column-gap: 5px;
  row-gap: 5px;
}

/* line 17, app/assets/stylesheets/projects.scss */
.project_form {
  display: grid;
  height: auto;
  background-color: #ddf;
  flex-wrap: wrap;
  padding: .5em;
  column-gap: 2em;
  row-gap: 0.2em;
  border: solid gray 3px;
  border-radius: 10px;
}

/* line 29, app/assets/stylesheets/projects.scss */
.project_form div {
  align-items: flex-start;
}

/* line 31, app/assets/stylesheets/projects.scss */
.project_form div input, .project_form div select {
  font-size: 100%;
}

/* line 35, app/assets/stylesheets/projects.scss */
.project_form div label {
  font-size: 90%;
  font-weight: bold;
  color: blue;
  align-items: flex-start;
}

/* line 44, app/assets/stylesheets/projects.scss */
.project_summary {
  align-items: flex-start;
  border: 2px dotted darkblue;
  border-radius: 15px;
  padding: 5px 10px;
  background-color: #dde;
  margin-bottom: 1em;
}

/* line 52, app/assets/stylesheets/projects.scss */
.project_summary * {
  align-items: flex-start;
  display: inline-block;
  padding: 0.0em 0;
  margin: 0;
  min-width: 2em;
}

/* line 61, app/assets/stylesheets/projects.scss */
.project_summary label {
  font-size: 80%;
  color: blue;
  display: inline-block;
  padding: 3px;
  margin: 3px;
  border-radius: 5px;
  border: 1px gray solid;
  background-color: #eee;
  font-size: 30%;
}

/* line 69, app/assets/stylesheets/projects.scss */
.project_summary p {
  padding: 0 0.2em;
}

/* line 75, app/assets/stylesheets/projects.scss */
table.estimate_details {
  border-collapse: separate;
  border: none;
}

/* line 78, app/assets/stylesheets/projects.scss */
table.estimate_details tr, table.estimate_details td, table.estimate_details th {
  border: none;
}

/* line 81, app/assets/stylesheets/projects.scss */
table.estimate_details th {
  background-color: #cdf;
  font-size: 80%;
}

/* line 85, app/assets/stylesheets/projects.scss */
table.estimate_details tr, table.estimate_details td {
  background-color: white;
}

/* line 91, app/assets/stylesheets/projects.scss */
.procurements_in_estimate {
  border: 2px solid #bed;
  border-radius: 5px;
  background-color: #cfe;
  padding: 10px;
  margin: 5px;
}

/* line 99, app/assets/stylesheets/projects.scss */
.expenses_in_estimate {
  border: 2px solid #bed;
  border-radius: 5px;
  background-color: #cef;
  padding: 10px;
  margin: 5px;
}

/* line 107, app/assets/stylesheets/projects.scss */
.procurements_and_expenses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 17, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header {
  display: grid;
  grid-template-columns: auto 12em 12em;
  align-items: baseline;
  grid-gap: 0 1.5em;
}

/* line 23, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header div {
  display: grid;
  grid-template-columns: auto 1fr;
}

/* line 28, app/assets/stylesheets/juchuus.scss */
div.juchuu_list_header div.month_selector {
  align-items: center;
  margin-bottom: 0.5em;
}

/* line 33, app/assets/stylesheets/juchuus.scss */
div#juchuus {
  display: grid;
  grid-template-columns: auto;
  row-gap: 3px;
}

/* line 38, app/assets/stylesheets/juchuus.scss */
div#juchuus div.juchuu_row {
  font-size: 10pt;
  display: grid;
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  background-color: #fff;
}

/* line 48, app/assets/stylesheets/juchuus.scss */
div#juchuus div.juchuu_row div {
  padding: 3px;
}

/* line 57, app/assets/stylesheets/juchuus.scss */
div.juchuu_header_row div {
  background-color: #555;
  color: #fff;
  text-align: center;
}

/* line 66, app/assets/stylesheets/juchuus.scss */
div.juchuu_data_row div {
  background-color: #eef;
}

/* line 70, app/assets/stylesheets/juchuus.scss */
a.juchuu_row {
  color: black;
  background-color: white;
  margin: 0px;
  padding: 0px;
}

/* line 76, app/assets/stylesheets/juchuus.scss */
a.juchuu_row :hover {
  color: blue;
}
/* line 1, app/assets/stylesheets/users.scss */
.user-info {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

/* line 6, app/assets/stylesheets/users.scss */
.user-info h1 {
  margin-bottom: 30px;
  color: #333;
}

/* line 11, app/assets/stylesheets/users.scss */
.user-info .info-section {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 5px;
}

/* line 17, app/assets/stylesheets/users.scss */
.user-info .info-section h2 {
  margin-bottom: 20px;
  color: #444;
  font-size: 1.2em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* line 25, app/assets/stylesheets/users.scss */
.user-info .info-section dl {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
}

/* line 30, app/assets/stylesheets/users.scss */
.user-info .info-section dl dt {
  font-weight: bold;
  color: #666;
}

/* line 35, app/assets/stylesheets/users.scss */
.user-info .info-section dl dd {
  margin: 0;
  color: #333;
}

/* line 44, app/assets/stylesheets/users.scss */
.form-group {
  margin-bottom: 15px;
}

/* line 47, app/assets/stylesheets/users.scss */
.form-group .form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #666;
}

/* line 54, app/assets/stylesheets/users.scss */
.form-group .form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1em;
}

/* line 61, app/assets/stylesheets/users.scss */
.form-group .form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 68, app/assets/stylesheets/users.scss */
.form-group textarea.form-control {
  min-height: 100px;
}

/* line 73, app/assets/stylesheets/users.scss */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* line 78, app/assets/stylesheets/users.scss */
.checkbox-group .form-checkbox {
  width: 18px;
  height: 18px;
}

/* line 83, app/assets/stylesheets/users.scss */
.checkbox-group .form-label {
  margin: 0;
}

/* line 88, app/assets/stylesheets/users.scss */
.error-message {
  color: #dc3545;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* line 96, app/assets/stylesheets/users.scss */
.error-message h2 {
  margin-top: 0;
  font-size: 1.2em;
}

/* line 101, app/assets/stylesheets/users.scss */
.error-message ul {
  margin-bottom: 0;
  padding-left: 20px;
}

/* line 107, app/assets/stylesheets/users.scss */
.actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

/* line 112, app/assets/stylesheets/users.scss */
.actions .btn {
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

/* line 119, app/assets/stylesheets/users.scss */
.actions .btn-primary {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

/* line 124, app/assets/stylesheets/users.scss */
.actions .btn-primary:hover {
  background-color: #0069d9;
  border-color: #0062cc;
}

/* line 130, app/assets/stylesheets/users.scss */
.actions .btn-secondary {
  background-color: #6c757d;
  color: white;
  border: 1px solid #6c757d;
}

/* line 135, app/assets/stylesheets/users.scss */
.actions .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
/* line 18, app/assets/stylesheets/schedules.scss */
:root {
  --calendar-available-height: calc(100vh - 350px);
}

/* line 22, app/assets/stylesheets/schedules.scss */
.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

/* line 31, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell {
  background-color: #fff;
  min-height: 120px;
  padding: 8px;
  border: none;
}

/* line 37, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell:hover {
  background-color: #f8f9fa;
}

/* line 41, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 4px;
}

/* line 48, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 53, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 58, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 63, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 68, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 75, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 80, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item {
  margin-bottom: 4px;
}

/* line 83, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link {
  display: block;
  padding: 4px 8px;
  background-color: #e3f2fd;
  color: #1976d2;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
}

/* line 93, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .schedule-list .schedule-item .schedule-link:hover {
  background-color: #1976d2;
  color: #fff;
}

/* line 104, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 109, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 114, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 119, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 124, app/assets/stylesheets/schedules.scss */
.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 131, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 136, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 141, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 146, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 151, app/assets/stylesheets/schedules.scss */
#schedules.schedule-calendar .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 158, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start {
  background: linear-gradient(90deg, #4caf50 0%, #81c784 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 4px 0 0 4px;
  border-right: 2px solid #2e7d32;
  position: relative;
}

/* line 166, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start::after {
  content: "▶";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 185, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle {
  background: linear-gradient(90deg, #81c784 0%, #81c784 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 0;
  border-left: 2px solid #2e7d32;
  border-right: 2px solid #2e7d32;
  position: relative;
}

/* line 194, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle::before {
  content: "◀";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 212, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle::after {
  content: "▶";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 231, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 0 4px 4px 0;
  border-left: 2px solid #2e7d32;
  position: relative;
}

/* line 239, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end::before {
  content: "◀";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e7d32;
  font-size: 12px;
  background: white;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* line 259, app/assets/stylesheets/schedules.scss */
.kumitate {
  border: 1px dotted blue;
  background-color: darkslategray;
  color: white;
}

/* line 263, app/assets/stylesheets/schedules.scss */
.kumitate a {
  color: lightgray;
}

/* line 266, app/assets/stylesheets/schedules.scss */
.kumitate a:hover {
  color: white;
}

/* line 271, app/assets/stylesheets/schedules.scss */
.tekkyo {
  border: 1px dotted blue;
  background-color: darkred;
  color: white;
}

/* line 275, app/assets/stylesheets/schedules.scss */
.tekkyo a {
  color: lightgray;
}

/* line 278, app/assets/stylesheets/schedules.scss */
.tekkyo a:hover {
  color: blue;
}

/* line 284, app/assets/stylesheets/schedules.scss */
.schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 297, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 305, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 308, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 313, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 320, app/assets/stylesheets/schedules.scss */
.schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 328, app/assets/stylesheets/schedules.scss */
.schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 342, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip,
.schedule-calendar .schedule-tooltip,
body .schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 357, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-header,
.schedule-calendar .schedule-tooltip .tooltip-header,
body .schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 365, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content,
.schedule-calendar .schedule-tooltip .tooltip-content,
body .schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 368, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 373, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row .label,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 380, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 388, app/assets/stylesheets/schedules.scss */
#schedules .schedule-tooltip::before,
.schedule-calendar .schedule-tooltip::before,
body .schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 402, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip,
body .schedule-calendar .schedule-tooltip,
body .schedule-tooltip {
  position: absolute;
  background-color: #333;
  color: white;
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 250px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: none;
  white-space: nowrap;
}

/* line 417, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-header,
body .schedule-calendar .schedule-tooltip .tooltip-header,
body .schedule-tooltip .tooltip-header {
  font-weight: bold;
  margin-bottom: 5px;
  border-bottom: 1px solid #555;
  padding-bottom: 3px;
  color: #ffd700;
}

/* line 425, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content,
body .schedule-calendar .schedule-tooltip .tooltip-content,
body .schedule-tooltip .tooltip-content {
  line-height: 1.4;
}

/* line 428, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row,
body .schedule-tooltip .tooltip-content .tooltip-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}

/* line 433, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .label,
body .schedule-tooltip .tooltip-content .tooltip-row .label {
  font-weight: bold;
  margin-right: 10px;
  min-width: 60px;
  color: #ccc;
}

/* line 440, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value {
  flex: 1;
  text-align: right;
  color: white;
}

/* line 448, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip::before,
body .schedule-calendar .schedule-tooltip::before,
body .schedule-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 10px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
}

/* line 462, app/assets/stylesheets/schedules.scss */
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-tooltip .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 472, app/assets/stylesheets/schedules.scss */
div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 480, app/assets/stylesheets/schedules.scss */
div[id*="tooltip_"] .tooltip-content .tooltip-row .value[style*="color"],
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value[style*="color"] {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 488, app/assets/stylesheets/schedules.scss */
body div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
body div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value,
body #schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
body .schedule-tooltip .tooltip-content .tooltip-row .value,
div[id*="tooltip_"] .tooltip-content .tooltip-row .value,
div[class*="schedule-tooltip"] .tooltip-content .tooltip-row .value,
#schedules .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-calendar .schedule-tooltip .tooltip-content .tooltip-row .value,
.schedule-tooltip .tooltip-content .tooltip-row .value {
  color: white;
  text-align: right;
  flex: 1;
}

/* line 504, app/assets/stylesheets/schedules.scss */
.btn-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* line 515, app/assets/stylesheets/schedules.scss */
.btn-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* line 520, app/assets/stylesheets/schedules.scss */
.btn-circle i {
  font-size: 16px;
  line-height: 1;
}

@keyframes pulse-attention {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* line 539, app/assets/stylesheets/schedules.scss */
.schedule-item-not-agreed .schedule-link,
.schedule-item .schedule-item-not-agreed .schedule-link {
  background-color: #ff9800 !important;
  color: white !important;
  border: 2px solid #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 545, app/assets/stylesheets/schedules.scss */
.schedule-item-not-agreed .schedule-link:hover,
.schedule-item .schedule-item-not-agreed .schedule-link:hover {
  background-color: #ff6b35 !important;
  color: white !important;
}

/* line 553, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed,
#schedules .schedule-item .multi-day-schedule-middle.not-agreed,
#schedules .schedule-item .multi-day-schedule-end.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  border-color: #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 107, 53, 0.5) !important;
}

/* line 563, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  border-right-color: #ff6b35 !important;
}

/* line 567, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.not-agreed::after {
  color: #ff6b35 !important;
}

/* line 573, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.not-agreed {
  background: linear-gradient(90deg, #ff6b35 0%, #ff6b35 100%) !important;
  border-left-color: #ff6b35 !important;
  border-right-color: #ff6b35 !important;
}

/* line 578, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.not-agreed::before, #schedules .schedule-item .multi-day-schedule-middle.not-agreed::after {
  color: #ff6b35 !important;
}

/* line 585, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.not-agreed {
  background: linear-gradient(90deg, #ff6b35 0%, #ff9800 100%) !important;
  border-left-color: #ff6b35 !important;
}

/* line 589, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.not-agreed::before {
  color: #ff6b35 !important;
}

/* line 595, app/assets/stylesheets/schedules.scss */
.normal_schedule.not-agreed {
  background-color: #ff9800 !important;
  color: white !important;
  border: 2px solid #ff6b35 !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 601, app/assets/stylesheets/schedules.scss */
.normal_schedule.not-agreed:hover {
  background-color: #ff6b35 !important;
}

@keyframes red-blink {
  0%, 100% {
    opacity: 1;
    background-color: #dc3545;
  }
  50% {
    opacity: 0.5;
    background-color: #ff6b6b;
  }
}

/* line 621, app/assets/stylesheets/schedules.scss */
.schedule-item-red-alert .schedule-link,
.schedule-item .schedule-item-red-alert .schedule-link {
  background-color: #dc3545 !important;
  color: white !important;
  border: 2px solid #c82333 !important;
  animation: red-blink 1.5s ease-in-out infinite;
}

/* line 627, app/assets/stylesheets/schedules.scss */
.schedule-item-red-alert .schedule-link:hover,
.schedule-item .schedule-item-red-alert .schedule-link:hover {
  background-color: #c82333 !important;
  color: white !important;
}

/* line 635, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert,
#schedules .schedule-item .multi-day-schedule-middle.red-alert,
#schedules .schedule-item .multi-day-schedule-end.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  border-color: #c82333 !important;
  animation: red-blink 1.5s ease-in-out infinite;
  box-shadow: inset 0 0 20px rgba(255, 107, 107, 0.5) !important;
}

/* line 645, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  border-right-color: #c82333 !important;
}

/* line 649, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-start.red-alert::after {
  color: #c82333 !important;
}

/* line 655, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.red-alert {
  background: linear-gradient(90deg, #ff6b6b 0%, #ff6b6b 100%) !important;
  border-left-color: #c82333 !important;
  border-right-color: #c82333 !important;
}

/* line 660, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-middle.red-alert::before, #schedules .schedule-item .multi-day-schedule-middle.red-alert::after {
  color: #c82333 !important;
}

/* line 667, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.red-alert {
  background: linear-gradient(90deg, #ff6b6b 0%, #dc3545 100%) !important;
  border-left-color: #c82333 !important;
}

/* line 671, app/assets/stylesheets/schedules.scss */
#schedules .schedule-item .multi-day-schedule-end.red-alert::before {
  color: #c82333 !important;
}

/* line 677, app/assets/stylesheets/schedules.scss */
.schedule-badge-star {
  position: absolute;
  top: 2px;
  left: 2px;
  color: #ffd700;
  font-size: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  z-index: 10;
  pointer-events: none;
  animation: star-pulse 1s steps(1, end) infinite;
}

@keyframes star-pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* line 703, app/assets/stylesheets/schedules.scss */
.card.calendar-card,
.card:has(.schedule-calendar-view) {
  padding: 0;
  margin-bottom: 0;
}

/* line 709, app/assets/stylesheets/schedules.scss */
.card.calendar-card:hover,
.card:has(.schedule-calendar-view):hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* line 714, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls {
  padding: 4px 8px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 721, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
}

/* line 728, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 733, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  min-width: 100px;
  text-align: center;
  margin: 0 4px;
}

/* line 742, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn {
  font-size: 12px !important;
  padding: 4px 8px !important;
  min-height: 28px !important;
  min-width: auto !important;
  margin: 0;
}

/* line 751, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management {
  margin-left: auto;
}

/* line 754, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn {
  margin: 0;
}

/* line 761, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* line 766, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label {
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  white-space: nowrap;
}

/* line 774, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control,
.card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control {
  font-size: 12px;
  padding: 4px 8px;
  min-height: 28px;
  margin: 0;
}

/* line 786, app/assets/stylesheets/schedules.scss */
.card.calendar-card .card-body,
.card:has(.schedule-calendar-view) .card-body {
  padding: 0;
}

/* line 791, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view {
  overflow: hidden;
  position: relative;
}

/* line 796, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-floating-controls {
  display: none;
}

/* line 801, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-month-selector {
  display: none;
}

/* line 806, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header {
  display: none;
}

/* line 809, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell {
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: #495057;
}

/* line 817, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell:nth-child(6) {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 822, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-weekday-header .weekday-cell:nth-child(7) {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 830, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background-color: #e1e1e1;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* line 840, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell {
  background-color: #fff;
  min-height: 120px;
  height: auto;
  padding: 0;
  border: none;
  overflow: hidden;
  position: relative;
}

/* line 849, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell:hover {
  background-color: #f8f9fa;
}

/* line 853, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell.other-month {
  background-color: #f5f5f5;
  color: #999;
}

/* line 857, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell.other-month .date_cell {
  color: #999;
}

/* line 862, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell {
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 0;
  padding: 2px 4px;
  border-radius: 4px;
  text-align: center;
  position: relative;
}

/* line 871, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell .date-link {
  display: block;
  text-align: center;
  line-height: 1.5;
  padding: 2px 4px;
}

/* line 878, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.weekday {
  background-color: #f8f9fa;
  color: #495057;
}

/* line 883, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.saturday {
  background-color: #e3f2fd;
  color: #1976d2;
}

/* line 888, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.sunday {
  background-color: #ffebee;
  color: #d32f2f;
}

/* line 893, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.holiday {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

/* line 898, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .date_cell.today {
  background-color: #e8f5e8;
  color: #2e7d32;
  border: 2px solid #4caf50;
}

/* line 905, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .project-schedule-item {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 0;
}

/* line 911, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .project-schedule-item p {
  background-color: #28a745;
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 12px;
  margin-bottom: 0;
}

/* line 921, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 926, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item {
  margin-bottom: 0;
}

/* line 929, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item.schedule-item-hidden {
  display: none;
}

/* line 933, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link {
  display: block;
  padding: 2px 4px;
  background-color: #e3f2fd;
  color: #1976d2;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 946, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link:hover {
  background-color: #1976d2;
  color: #fff;
}

/* line 953, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items {
  margin-bottom: 0;
}

/* line 956, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items.schedule-item-hidden {
  display: none;
}

/* line 960, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-more-link {
  display: block;
  padding: 2px 4px;
  background-color: #6c757d;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

/* line 972, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-more-link:hover {
  background-color: #5a6268;
}

/* line 982, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 24px;
  margin: 2px 1px;
  padding: 2px 8px;
  background: linear-gradient(90deg, #e3f2fd 0%, #bbdefb 100%);
  color: #1976d2;
  border-radius: 4px;
  z-index: 10;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: auto;
}

/* line 998, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link {
  color: #1976d2;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

/* line 1008, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link:hover {
  text-decoration: underline;
}

/* line 1013, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar .schedule-badge-star {
  color: #ffd700;
  font-size: 14px;
  margin-left: 4px;
  flex-shrink: 0;
}

/* line 1020, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-start {
  border-radius: 4px 0 0 4px;
}

/* line 1024, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-end {
  border-radius: 0 4px 4px 0;
}

/* line 1028, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-middle {
  border-radius: 0;
}

/* line 1032, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.multi-day-bar-single {
  border-radius: 4px;
}

/* line 1036, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.not-agreed {
  background: linear-gradient(90deg, #ff9800 0%, #ff6b35 100%) !important;
  animation: pulse-attention 2s ease-in-out infinite;
}

/* line 1041, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert {
  background: linear-gradient(90deg, #dc3545 0%, #ff6b6b 100%) !important;
  animation: red-blink 1.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  /* line 1050, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card,
.schedule-calendar-view .card:has(.schedule-calendar-view) {
    padding: 0;
    margin-bottom: 0;
  }
  /* line 1055, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls {
    padding: 4px;
  }
  /* line 1058, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row {
    min-height: 28px;
    flex-wrap: wrap;
  }
  /* line 1063, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation {
    gap: 2px;
  }
  /* line 1066, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .current-month {
    font-size: 12px;
    min-width: 80px;
    margin: 0 2px;
  }
  /* line 1072, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .month-navigation .btn {
    font-size: 11px !important;
    padding: 3px 6px !important;
    min-height: 24px !important;
  }
  /* line 1080, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-top .schedule-management .btn {
    min-height: 24px !important;
    min-width: 24px !important;
  }
  /* line 1088, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection {
    gap: 4px;
  }
  /* line 1091, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection label {
    font-size: 11px;
  }
  /* line 1095, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-header.calendar-header-controls .calendar-header-row.calendar-header-row-bottom .user-selection .user-selector .form-control {
    font-size: 11px;
    padding: 3px 6px;
    min-height: 24px;
  }
  /* line 1105, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .card.calendar-card .card-body,
.schedule-calendar-view .card:has(.schedule-calendar-view) .card-body {
    padding: 0;
  }
  /* line 1110, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-month-selector {
    display: none;
  }
  /* line 1115, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-weekday-header .weekday-cell {
    padding: 8px 4px;
    font-size: 12px;
  }
  /* line 1122, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell {
    min-height: 80px;
    max-height: 80px;
    padding: 0;
    overflow: hidden;
  }
  /* line 1128, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .date_cell {
    font-size: 9px;
    padding: 1px 2px;
    margin-bottom: 0;
  }
  /* line 1135, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item {
    margin-bottom: 0;
  }
  /* line 1138, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item.schedule-item-hidden {
    display: none;
  }
  /* line 1142, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-item .schedule-link {
    padding: 1px 2px;
    font-size: 10px;
  }
  /* line 1148, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items {
    margin-bottom: 0;
  }
  /* line 1151, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items.schedule-item-hidden {
    display: none;
  }
  /* line 1155, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .calendar-grid .calendar-cell .schedule-list .schedule-more-items .schedule-link {
    padding: 1px 2px;
    font-size: 10px;
  }
  /* line 1164, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar {
    height: 20px;
    padding: 1px 4px;
    font-size: 10px;
  }
  /* line 1169, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar .multi-day-bar-link {
    font-size: 10px;
  }
  /* line 1173, app/assets/stylesheets/schedules.scss */
  .schedule-calendar-view .multi-day-schedule-bar .schedule-badge-star {
    font-size: 12px;
  }
}

/* line 1181, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend {
  font-size: 12px;
  color: #495057;
  margin: 8px 0 0;
  padding: 8px 12px;
  background: #f1f3f5;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}

/* line 1190, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__item {
  margin-right: 1.25rem;
  padding-left: 14px;
  position: relative;
}

/* line 1195, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 10px;
  height: 0.85em;
  border-radius: 2px;
}

/* line 1206, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__mine::before {
  background: linear-gradient(90deg, #4caf50 0%, #81c784 100%);
}

/* line 1210, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__peer::before {
  border-left: 4px solid #00897b;
  background: linear-gradient(90deg, #b2dfdb 0%, #4db6ac 100%);
  width: 8px;
}

/* line 1216, app/assets/stylesheets/schedules.scss */
.shokuchou-schedule-legend__unassigned::before {
  border: 2px dashed #90a4ae;
  background: rgba(236, 239, 241, 0.95);
}

/* line 1223, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-peer:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #b2dfdb 0%, #4db6ac 100%) !important;
  border-left: 4px solid #00897b;
  box-sizing: border-box;
}

/* line 1229, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-unassigned:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #eceff1 0%, #cfd8dc 100%) !important;
  color: #37474f !important;
  border: 2px dashed #90a4ae;
  box-sizing: border-box;
}

/* line 1235, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-shokuchou-unassigned:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #37474f !important;
}

/* line 1242, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-peer:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #00897b;
  padding-left: 6px;
  background-color: #e0f2f1;
  color: #00695c;
}

/* line 1248, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-peer:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #00897b;
  color: #fff;
}

/* line 1254, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-unassigned:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border: 1px dashed #90a4ae;
  background-color: #eceff1;
  color: #455a64;
  opacity: 0.95;
}

/* line 1260, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-shokuchou-unassigned:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #90a4ae;
  color: #fff;
  border-style: solid;
  opacity: 1;
}

/* line 1270, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-shokuchou-peer {
  border-left: 4px solid #00897b;
  padding-left: 6px;
  background-color: #e0f2f1;
}

/* line 1276, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-shokuchou-unassigned {
  border: 1px dashed #90a4ae;
  background-color: #eceff1;
  color: #455a64;
}

/* line 1286, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #66bb6a 0%, #43a047 100%) !important;
  color: #fff !important;
  border-top: 1px solid #2e7d32;
  border-bottom: 1px solid #2e7d32;
  border-left: 1px solid #2e7d32;
  border-right: 1px solid #2e7d32;
  box-sizing: border-box;
}

/* line 1295, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1301, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-start:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
}

/* line 1305, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-end:not(.not-agreed):not(.red-alert) {
  border-right-width: 3px;
}

/* line 1309, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-kumitate.multi-day-bar-single:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
  border-right-width: 3px;
}

/* line 1314, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo:not(.not-agreed):not(.red-alert) {
  background: linear-gradient(90deg, #ef5350 0%, #e53935 100%) !important;
  color: #fff !important;
  border-top: 1px solid #c62828;
  border-bottom: 1px solid #c62828;
  border-left: 1px solid #c62828;
  border-right: 1px solid #c62828;
  box-sizing: border-box;
}

/* line 1323, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo:not(.not-agreed):not(.red-alert) .multi-day-bar-link {
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1329, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-start:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
}

/* line 1333, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-end:not(.not-agreed):not(.red-alert) {
  border-right-width: 3px;
}

/* line 1337, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.schedule-type-tekkyo.multi-day-bar-single:not(.not-agreed):not(.red-alert) {
  border-left-width: 3px;
  border-right-width: 3px;
}

/* line 1345, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-kumitate:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #2e7d32;
  padding-left: 6px;
  background-color: #e8f5e9;
  color: #1b5e20;
}

/* line 1351, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-kumitate:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #43a047;
  color: #fff;
}

/* line 1357, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-tekkyo:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link {
  border-left: 4px solid #c62828;
  padding-left: 6px;
  background-color: #ffebee;
  color: #8e0000;
}

/* line 1363, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-type-tekkyo:not(.schedule-item-not-agreed):not(.schedule-item-red-alert) .schedule-link:hover {
  background-color: #e53935;
  color: #fff;
}

/* line 1372, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-type-kumitate:not(.not-agreed) {
  border-left: 4px solid #2e7d32;
  padding-left: 6px;
  background-color: #e8f5e9;
  color: #1b5e20;
}

/* line 1379, app/assets/stylesheets/schedules.scss */
.normal_schedule.schedule-type-tekkyo:not(.not-agreed) {
  border-left: 4px solid #c62828;
  padding-left: 6px;
  background-color: #ffebee;
  color: #8e0000;
}

/* line 1392, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link {
  border-left: 4px solid #2e7d32 !important;
  padding-left: 22px;
  position: relative;
}

/* line 1398, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link {
  border-left: 4px solid #7f1d1d !important;
  padding-left: 22px;
  position: relative;
}

/* line 1404, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link::before, .schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link::before {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  opacity: 1;
  animation: none;
}

/* line 1423, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-kumitate .schedule-link::before {
  content: "組";
  background: #2e7d32;
}

/* line 1428, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .schedule-list .schedule-item.schedule-item-red-alert.schedule-type-tekkyo .schedule-link::before {
  content: "撤";
  background: #7f1d1d;
}

/* line 1436, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate {
  border-left: 3px solid #2e7d32;
  box-sizing: border-box;
}

/* line 1441, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo {
  border-left: 3px solid #7f1d1d;
  box-sizing: border-box;
}

/* line 1446, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link, .schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link {
  position: relative;
  padding-left: 18px;
  color: #fff !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35);
}

/* line 1454, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link::before, .schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 3px;
  font-size: 10px;
  line-height: 14px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  text-shadow: none;
  animation: none;
}

/* line 1472, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-kumitate .multi-day-bar-link::before {
  content: "組";
  background: #2e7d32;
}

/* line 1477, app/assets/stylesheets/schedules.scss */
.schedule-calendar-view .multi-day-schedule-bar.red-alert.schedule-type-tekkyo .multi-day-bar-link::before {
  content: "撤";
  background: #7f1d1d;
}

/* line 1484, app/assets/stylesheets/schedules.scss */
.tooltip-shokuchou-unassigned {
  color: #ff9800 !important;
  font-weight: 600;
}

/* line 1489, app/assets/stylesheets/schedules.scss */
.schedule-search-open {
  margin-right: 8px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 1498, app/assets/stylesheets/schedules.scss */
.schedule-search-page {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  height: min(calc(100vh - 5rem), 900px);
  min-height: 320px;
  overflow: hidden;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

/* line 1511, app/assets/stylesheets/schedules.scss */
.schedule-search-page-top {
  flex-shrink: 0;
  padding: 12px 12px 0;
}

/* line 1516, app/assets/stylesheets/schedules.scss */
.schedule-search-page-toolbar {
  padding: 12px 0 16px;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

/* line 1522, app/assets/stylesheets/schedules.scss */
.schedule-search-page-header {
  padding-bottom: 0;
}

/* line 1526, app/assets/stylesheets/schedules.scss */
.schedule-search-page-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 1534, app/assets/stylesheets/schedules.scss */
.schedule-search-page-title {
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

/* line 1540, app/assets/stylesheets/schedules.scss */
.schedule-search-page-back {
  font-size: 13px;
  padding: 8px 12px;
  white-space: nowrap;
}

/* line 1546, app/assets/stylesheets/schedules.scss */
.schedule-search-page-note {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0;
}

/* line 1552, app/assets/stylesheets/schedules.scss */
.schedule-search-page-form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 0;
}

/* line 1560, app/assets/stylesheets/schedules.scss */
.schedule-search-page-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  font-size: 16px;
  min-height: 44px;
}

/* line 1568, app/assets/stylesheets/schedules.scss */
.schedule-search-page-submit {
  white-space: nowrap;
  min-height: 44px;
  padding-left: 14px;
  padding-right: 14px;
}

/* line 1575, app/assets/stylesheets/schedules.scss */
.schedule-search-page-hit-count {
  font-size: 13px;
  margin: 8px 0 0;
}

/* line 1580, app/assets/stylesheets/schedules.scss */
.schedule-search-page-results {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 8px 12px 16px;
  -webkit-overflow-scrolling: touch;
}

/* line 1588, app/assets/stylesheets/schedules.scss */
.schedule-search-page-empty {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* line 1594, app/assets/stylesheets/schedules.scss */
.schedule-search-result-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 1600, app/assets/stylesheets/schedules.scss */
.schedule-search-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

/* line 1608, app/assets/stylesheets/schedules.scss */
.schedule-search-card--nearest {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
  scroll-margin-top: 8px;
}

/* line 1614, app/assets/stylesheets/schedules.scss */
.schedule-search-card__date {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

/* line 1621, app/assets/stylesheets/schedules.scss */
.schedule-search-date-link {
  color: #2563eb;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
}

/* line 1628, app/assets/stylesheets/schedules.scss */
.schedule-search-card__koumuten {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
  font-weight: 500;
}

/* line 1636, app/assets/stylesheets/schedules.scss */
.schedule-search-card__site {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #0f172a;
  word-break: break-word;
}

/* line 1645, app/assets/stylesheets/schedules.scss */
.schedule-search-card__site-link {
  color: inherit;
  text-decoration: none;
  display: block;
  padding: 2px 0;
}

/* line 1652, app/assets/stylesheets/schedules.scss */
.schedule-search-card__address {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #64748b;
}

/* line 1659, app/assets/stylesheets/schedules.scss */
.schedule-search-card__address--empty {
  color: #cbd5e1;
}

/* line 1663, app/assets/stylesheets/schedules.scss */
.schedule-search-maps-link {
  color: #2563eb;
  text-decoration: underline;
  word-break: break-word;
  display: inline-block;
  padding: 2px 0;
}

@media (min-width: 768px) {
  /* line 1672, app/assets/stylesheets/schedules.scss */
  .schedule-search-page {
    max-width: 720px;
    border-radius: 8px;
    border-left: 1px solid #e5e7eb;
    border-right: 1px solid #e5e7eb;
  }
  /* line 1679, app/assets/stylesheets/schedules.scss */
  .schedule-search-page-top,
.schedule-search-page-results {
    padding-left: 16px;
    padding-right: 16px;
  }
  /* line 1685, app/assets/stylesheets/schedules.scss */
  .schedule-search-card__site {
    font-size: 20px;
  }
}
