

.section-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid var(--court-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--court-gold);
    font-size: 1.8rem;
    background: #fff;
}

.schedule-title {
    color: var(--court-deep);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin: 0;
}

/*.calendar-card,*/
/*.schedule-detail-card {*/
/*    background: #fff;*/
/*    border: 1px solid #e7e7e7;*/
/*    border-radius: 18px;*/
/*    box-shadow: 0 8px 24px rgba(5, 5, 77, 0.05);*/
/*}*/

/*.calendar-card {*/
/*    padding: 1rem;*/
/*}*/

.schedule-detail-card {
    padding: 1.25rem;
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: 1rem;
}

.calendar-toolbar .call-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.calendar-toolbar .call-btn-today {
    border-radius: 10px;
    border-color: #d9d9d9;
    border: solid #dee2e6 1px;
    font-weight: 600;
    color: var(--court-deep);
}



.calendar-picker-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex: 1;
}

.cal-year-select {
    max-width: 130px;
    border-radius: 10px;
    border-color: #d9d9d9;
    font-weight: 600;
    color: var(--court-deep);
}

.cal-month-select {
    max-width: 170px;
    border-radius: 10px;
    border-color: #d9d9d9;
    font-weight: 600;
    color: var(--court-deep);
}

.cal-year-select:focus,
.cal-month-select:focus {
    border-color: var(--court-gold);
    box-shadow: 0 0 0 .2rem rgba(200, 156, 84, 0.18);
}

.cal-table {
    table-layout: fixed;
    background: #fff;
}

.cal-table th,
.cal-table td {
    border-color: #e6e6e6 !important;
    width: 14.285%;
}

.cal-table thead th {
    background: #f8f9fb;
    color: var(--court-deep);
    font-weight: 700;
    font-size: .9rem;
    padding: .75rem .25rem;
}

.cal-table td {
    padding: 0 !important;
}

.cal-cell {
    min-height: 44px;
    padding: .45rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all .2s ease;
    background: #fff;
}

.cal-cell.other {
    background: #fafafa;
    opacity: .45;
}

.cal-cell.today {
    background: rgba(200, 156, 84, 0.2);
}

.cal-cell.selected {
    background: rgba(200, 156, 84, 0.3);
}

.cal-cell.is-clickable {
    cursor: pointer;
}

.cal-cell.is-clickable:hover {
    background: rgba(200, 156, 84, 0.08);
    box-shadow: inset 0 0 0 1px rgba(200, 156, 84, 0.25);
}

.cal-date {
    font-weight: 700;
    color: var(--court-deep);
    font-size: 1rem;
    line-height: 1;
}

.cal-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: .45rem;
}

.cal-dot {
    width: 18px;
    height: 8px;
    border-radius: 3px;
    display: inline-block;
}

.dot-blue {
    background: #4a70ff;
}

.dot-orange {
    background: #ff7437;
}

.dot-green {
    background: #19ac57;
}

.dot-yellow {
    background: #ffc600;
}

.chamber-tabs {
    gap: .5rem;
}

.chamber-tabs .nav-link {

}

.chamber-tabs .nav-link.active {
    background: #fff;
    /*border-color: var(--court-deep);*/
    color: #000;
}

.chamber-tabs .nav-link .cal-dot {
    margin-right: 6px;
}

.schedule-detail-card .card {
    border: 0 !important;
    box-shadow: none !important;
}

.schedule-detail-card .card-body {
    padding: 0 !important;
}

.schedule-detail-card .table {
    background: #fff;
}

.schedule-detail-card .table thead th {
    background: #f8f9fb;
    color: var(--court-deep);
    font-weight: 700;
    text-align: center;
}

.schedule-detail-card .table td,
.schedule-detail-card .table th {
    border-color: #e6e6e6 !important;
    vertical-align: middle;
}

.schedule-detail-card .btn-gold {
    border-radius: 999px;
    padding: .5rem 1rem;
    font-weight: 700;
}

.schedule-detail-card .text-center.fw-bold {
    color: var(--court-deep);
    font-size: 1.2rem;
    line-height: 1.5;
}

.schedule-detail-card .small.text-muted {
    font-size: .95rem;
}

@media (max-width: 991px) {
    .schedule-title {
        font-size: 1.35rem;
    }

    .calendar-card,
    .schedule-detail-card {
        border-radius: 14px;
    }

    .cal-cell {
        min-height: 64px;
        padding: .35rem;
    }

    .cal-year-select {
        max-width: 105px;
    }

    .cal-month-select {
        max-width: 140px;
    }
}

.judgment-modal-dialog {
  max-width: 1250px;
}

.judgment-modal-content {
  border-radius: 0;
  border: 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.jd-panel {
  background: #fff;
  height: 100%;
}

.jd-panel-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #171c67;
}

.jd-summary-table {
  border-collapse: collapse;
}

.jd-summary-table tr td {
  padding: 12px 10px;
  border-top: 1px solid #cfd4dc;
  vertical-align: middle;
  font-size: 15px;
  color: #374151;
}

.jd-summary-table tr td:first-child {
  width: 30%;
  color: #4b5563;
}

.jd-summary-table .jd-summary-rich {
  text-align: justify;
  line-height: 1.25;
}

.jd-summary-table .jd-summary-rich p {
  margin: 0;
}

.jd-summary-table .jd-summary-strong {
  font-weight: 700;
  color: #1f2937;
}

.jd-process-panel {
  padding-left: 12px;
}

.jd-process-list {
  position: relative;
  padding-left: 52px;
}

.jd-process-list::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 14px;
  width: 2px;
  background: #d9d9d9;
}

.jd-process-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
  min-height: 34px;
}

.jd-process-icon {
  position: absolute;
  left: -52px;
  top: 0;
  width: 28px;
  height: 32px;
  border-radius: 4px;
  background: #ff7f3f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 4px rgba(255, 127, 63, 0.25);
}

.jd-process-icon::before {
  content: "◔";
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.jd-process-text {
  font-size: 15px;
  line-height: 1.35;
  color: #374151;
  padding-top: 2px;
}

.jd-process-item.active .jd-process-text {
  color: #1f2937;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .jd-process-panel {
    padding-left: 0;
  }
}

.summ-wrap {
  line-height: 1.7;
  word-break: break-word;
  white-space: normal;
}

.summ-short,
.summ-full {
  text-align: justify;
}

.summ-toggle {
  color: #336dff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.summ-toggle:hover {
  text-decoration: underline;
}