* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #222;
  background: #fff;
}

.hidden-block {
  display: none !important;
}

.picker-trigger-btn {
  border: none;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.picker-trigger-btn:hover {
  color: #334155;
}

.picker-trigger-btn svg {
  display: block;
}

.btn-active-green {
  background-color: #28a745 !important;
  color: #fff !important;
}

/* Flex layout for role assignments */
.role-assignment-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.role-assignment-name {
  width: 160px;
  flex-shrink: 0;
  font-weight: bold;
  font-size: 14px;
  color: #333;
  padding-top: 4px;
}

.role-assignment-artists {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.artist-badge-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
  background-color: #f0fff4;
  color: #1a4731;
  border: 1px solid #c6f6d5;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 4px;
}

.artist-badge-remove {
  color: #e53e3e;
  font-weight: bold;
  cursor: pointer;
  padding: 0 4px;
  border: none;
  background: none;
}

.artist-badge-remove:hover {
  color: #c53030;
}

.role-artist-add-select {
  width: 100%;
  padding: 4px;
  font-size: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #666;
  margin-top: 4px;
}

.app {
  display: flex;
  min-height: 100vh;
}

/* ===== LOGIN ===== */

.login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b3550;
  padding: 24px;
}

.login-card {
  width: 420px;
  max-width: 100%;
  background: #fff;
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.login-title {
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 700;
  color: #0b3550;
  text-align: center;
}

.login-subtitle {
  margin: 0 0 22px;
  text-align: center;
  color: #666;
  font-size: 15px;
}

.login-card label {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.login-card input {
  width: 100%;
  display: block;
  margin: 0 0 14px;
  padding: 11px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font-size: 15px;
}

.login-btn {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  font-size: 15px;
}

.login-error {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  background: #ffe7e7;
  color: #b00020;
  font-size: 14px;
}

.sidebar {
  width: 260px;
  background: #f7f7f7;
  border-right: 1px solid #ddd;
  flex-shrink: 0;
  transition: width 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: sticky;
  top: 0;
}

.sidebar.collapsed {
  width: 60px;
}

.topbar {
  height: 64px;
  background: #0b3550;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 20px;
  white-space: nowrap;
}

.sidebar.collapsed .topbar {
  padding: 0;
  justify-content: center;
}

.sidebar.collapsed .topbar span {
  display: none;
}

.sidebar.collapsed .menu-section-title {
  display: none;
}

.sidebar.collapsed .menu-item {
  padding: 12px 0;
  justify-content: center;
}

.sidebar.collapsed .menu-item span {
  display: none;
}

.toggle-sidebar-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  margin-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar.collapsed .toggle-sidebar-btn {
  margin-right: 0;
}

.menu {
  flex: 1;
  padding: 10px 0;
  overflow-y: auto;
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid #ddd;
  background: #0b3550;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar.collapsed .sidebar-footer {
  padding: 12px 0;
  align-items: center;
}

.sidebar.collapsed .current-user-info {
  display: none;
}

.current-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-user-name {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.current-user-role {
  font-size: 12px;
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-btn {
  background: #fff;
  color: #0b3550;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  font-weight: 700;
  width: 100%;
}

.sidebar.collapsed .logout-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.sidebar.collapsed .logout-btn::before {
  content: "🚪";
  font-size: 18px;
}

.menu-section-title {
  padding: 12px 20px;
  font-weight: 700;
  color: #333;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
}

.menu-item:hover {
  background: #efefef;
}

.menu-item.active {
  background: #e3e3e3;
}

.calendar-conflict-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-left: auto;
  min-width: 14px;
  height: 14px;
  padding: 0 4px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* ===== MAIN ===== */

.main {
  flex: 1;
  min-width: 0;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-topbar {
  min-height: 64px;
  background: #0b3550;
  display: flex;
  align-items: center;
}

.current-user-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 22px;
  color: #fff;
}

.current-user-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.current-user-name {
  font-size: 16px;
  font-weight: 700;
}

.current-user-role {
  font-size: 13px;
  opacity: 0.9;
}

.current-user-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.content {
  flex: 1;
  min-height: 0;
  padding: 28px 24px 32px;
  overflow: hidden;
}

.page {
  display: none;
  min-height: 0;
}

.page.active {
  display: block;
  height: 100%;
  overflow: auto;
}

#calendarPage.page.active {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

h1 {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
}

/* ===== BUTTONS ===== */

.nav-btn,
.icon-btn,
.action-btn,
.small-btn,
.cast-tab-btn,
.editor-tab-btn,
.modal-actions button,
.event-shop-remove-btn {
  border: 1px solid #cfcfcf;
  background: #fff;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.15s ease;
}

.action-btn.primary {
  background: #2d89c6;
  border-color: #2d89c6;
  color: #fff;
}

.action-btn.primary:hover {
  background: #2579b1;
}

.nav-btn:hover,
.icon-btn:hover,
.action-btn:hover,
.small-btn:hover,
.cast-tab-btn:hover,
.editor-tab-btn:hover,
.modal-actions button:hover,
.event-shop-remove-btn:hover {
  background: #f3f3f3;
}

.action-btn.primary:hover {
  color: #fff;
}

/* ===== TOOLBARS ===== */

.page-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.page-toolbar h1 {
  margin: 0;
}

.page-toolbar-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.name-search-input {
  width: 240px;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.name-search-input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.name-search-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  position: relative;
}

.calendar-scroll-area {
  flex: 1;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
}

.month-box {
  min-width: 150px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px 14px;
  border-radius: 6px;
  background: #fff;
}

/* ===== FILTER ===== */

.filter-wrap {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.dropdown.open {
  display: block;
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 6px 0;
  font-size: 14px;
  line-height: 1.3;
}

/* ===== CALENDAR ===== */

.calendar {
  display: grid;
  background: #fff;
}

.corner {
  min-height: 44px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 3;
}

.loc-header {
  min-height: 44px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  padding: 10px 8px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.date-cell {
  min-height: 74px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 8px 10px;
  background: #fff;
}

.date-number {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.date-weekday {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}

.weekend {
  color: #b00020 !important;
}

.event-cell {
  min-height: 74px;
  border-right: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  padding: 4px;
  background: #fff;
  cursor: pointer;
}

.event-cell:hover {
  background: #fafafa;
}

.event-cell.drop-target {
  background: #eef6ff;
}

.event-card {
  position: relative;
  padding: 6px 8px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 4px;
  cursor: pointer;
}

.event-card.dragging {
  opacity: 0.55;
}

.type-show {
  background: #cfe8f7;
}

.type-reh {
  background: #dff0dc;
}

.type-rent {
  background: #ddd2ef;
}

.type-other {
  background: #ececec;
}

.event-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.event-time {
  color: #444;
}

.event-categories-preview {
  margin-top: 3px;
  font-size: 11px;
  color: #555;
  line-height: 1.25;
}

.my-event-dot {
  position: absolute;
  top: 6px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b6bcb;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(11, 107, 203, 0.2);
}

.event-shop-dot {
  position: absolute;
  top: 6px;
  right: 38px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4a017;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(212, 160, 23, 0.2);
}

.event-conflict-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 14px;
  height: 14px;
  padding: 0 3px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* ===== TABLES ===== */

.table-wrap {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.data-table th {
  background: #f7f7f7;
  font-weight: 700;
}

.data-table tr:hover {
  background: #fafafa;
}

.actions-cell {
  white-space: nowrap;
  width: 90px;
}

.icon-action {
  cursor: pointer;
  margin-right: 8px;
  font-size: 16px;
}

/* ===== MODALS ===== */

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: #fff;
  width: 500px;
  max-width: calc(100vw - 32px);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
}

.modal.large {
  width: 860px;
}

.modal-scroll {
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.modal h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
}

.modal label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.modal input:not([type="hidden"]):not([type="checkbox"]),
.modal select,
.modal textarea {
  width: 100%;
  padding: 8x 8px;
  border: 1px solid #cfcfcf;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
}

.modal textarea {
  resize: vertical;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ===== EVENT MODAL LAYOUT ===== */

.event-date-time-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 12px;
}

.event-date-time-row input {
  margin-bottom: 0 !important;
}

.event-sections-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  margin-bottom: 4px;
}

.event-sections-toolbar .managers-toggle-btn {
  margin-bottom: 0;
}

/* ===== HELPERS ===== */

.toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.section-card {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #fafafa;
}

.section-title {
  margin: 0 0 12px;
  font-size: 16px;
}

.compact-section {
  padding: 12px 14px;
}

.managers-toggle-btn {
  width: auto;
  font-weight: 700;
  margin-bottom: 0;
}

.managers-dropdown-wrap {
  margin-top: 10px;
}

/* ===== EVENT SHOP TASKS ===== */

.event-shops-head {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.event-shops-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-shop-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border: 1px solid #e6dfc6;
  border-radius: 8px;
  background: #fffdf6;
}

.event-shop-main {
  flex: 1;
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  gap: 10px;
  align-items: end;
}

.event-shop-field label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  font-weight: 700;
}

.event-shop-field select,
.event-shop-field input {
  margin-bottom: 0 !important;
}

.event-shop-approved-wrap {
  display: flex;
  align-items: center;
}

.event-shop-approved-label {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  font-size: 14px;
  font-weight: 400 !important;
  white-space: nowrap;
}

.event-shop-approved-label input {
  width: auto !important;
  margin: 0 !important;
}

.event-shop-remove-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

/* ===== PRODUCTION MODAL ===== */

.editor-panel {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  background: #f7f7f7;
}

.editor-panel-title {
  font-size: 13px;
  font-weight: 700;
  color: #666;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.editor-toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.editor-tab-btn {
  font-weight: 700;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.category-check-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  font-size: 14px;
  margin-bottom: 5px;
  cursor: pointer;
  white-space: nowrap;
}

.category-check-row input {
  width: auto;
  margin: 0;
}

.role-type-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
}

.role-type-name {
  font-size: 14px;
}

.role-type-select-wrap select {
  margin-bottom: 0;
}

.cast-switcher {
  margin-top: 18px;
}

.cast-switcher-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.cast-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cast-tab-btn.active {
  background: #2d89c6;
  border-color: #2d89c6;
  color: #fff;
}

.assignment-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 10px;
  align-items: center;
}

.assignment-row-search {
  align-items: start;
}

.assignment-role {
  font-size: 15px;
  padding-top: 8px;
}

.assignment-artist-search-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ===== CUSTOM ARTIST COMBOBOX ===== */

.artist-combobox {
  position: relative;
  width: 100%;
}

.artist-combobox-input {
  width: 100%;
  margin-bottom: 0 !important;
}

.artist-combobox-list {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  max-height: 220px;
  overflow-y: auto;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.artist-combobox-list.show {
  display: block;
}

.artist-combobox-item {
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
}

.artist-combobox-item:hover {
  background: #f3f3f3;
}

.artist-combobox-item.selected {
  background: #e8f2fb;
}

.artist-combobox-empty {
  padding: 8px 10px;
  color: #777;
  font-size: 14px;
}

.artist-combobox-empty-choice {
  font-style: italic;
  color: #555;
  border-bottom: 1px solid #eee;
}

/* ===== STATS MODAL ===== */

.temza-stats-modal {
  width: 1100px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #f4f1ea;
  border-radius: 10px;
  padding: 0;
}

.temza-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 16px 24px;
  border-bottom: 1px solid #ddd3c4;
}

.temza-stats-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.temza-stats-subtitle {
  margin-top: 6px;
  color: #666;
  font-size: 14px;
}

.temza-stats-header-actions {
  display: flex;
  gap: 8px;
}

.temza-stats-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  align-items: end;
  flex-wrap: wrap;
}

.temza-stats-dates {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.temza-stats-dates .relative {
  position: relative;
  min-width: 180px;
}

.temza-stats-dates .relative input {
  width: 100%;
  padding: 10px 42px 10px 12px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  font-size: 14px;
}

.temza-stats-dates .relative button {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #5f6b76;
}

.temza-stats-table-wrap {
  margin: 0 24px;
  background: #fff;
}

.temza-stats-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 24px 24px;
}

.temza-summary-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px;
}

.temza-summary-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.temza-summary-value {
  font-size: 22px;
  font-weight: 700;
  color: #0b3550;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .sidebar {
    width: 220px;
  }

  .form-grid-2,
  .categories-grid,
  .role-type-row,
  .assignment-row,
  .temza-stats-summary,
  .event-shop-main,
  .event-date-time-row {
    grid-template-columns: 1fr;
  }

  .page-toolbar,
  .editor-toolbar,
  .temza-stats-toolbar,
  .current-user-bar,
  .event-sections-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .calendar-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .calendar-toolbar .nav-btn,
  .calendar-toolbar .month-box {
    flex: 0 0 auto;
  }

  .calendar-toolbar .filter-wrap {
    margin-left: auto;
  }

  .assignment-role {
    padding-top: 0;
  }

  .modal.large {
    width: calc(100vw - 32px);
  }

  .event-shop-row {
    flex-direction: column;
  }

  .event-shop-remove-btn {
    width: 100%;
    height: 38px;
  }
}