/* Example Blocks */
.example-block {
  background: #f8f9fa;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #e9ecef;
  overflow: hidden;
}

.example-header {
  background: #4a6fa5;
  color: white;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 1rem;
}

.example-content {
  padding: 20px;
  border: 3px solid #d5d5d5;
}

.example-content p {
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e9ecef;
}

.example-content p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.example-content strong {
  color: #4a6fa5;
  font-weight: 600;
}

/* Intonation Symbols */
.falling::after {
  content: "↘";
  color: #e74c3c;
  font-size: 1.2em;
  margin-left: 10px;
  font-weight: bold;
}

.rising::after {
  content: "↗";
  color: #27ae60;
  font-size: 1.2em;
  margin-left: 10px;
  font-weight: bold;
}

.rise-fall::after {
  content: "↗↘";
  color: #f39c12;
  font-size: 1.2em;
  margin-left: 10px;
  font-weight: bold;
}

/* Important Note */
.important-note {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border: 2px solid #ffeaa7;
  position: relative;
}

.important-note::before {
  content: "💡";
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 1.5rem;
}

.important-note h2 {
  color: #e67e22;
  border-bottom-color: #ffeaa7;
}

/* Table Styles */
.table {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.isi-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    background-color: #fff;
}

.isi-table thead {
    background-color: #4a6fa5;
    color: white;
}

.isi-table th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid #34495e;
}

.isi-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #ecf0f1;
    vertical-align: top;
}

.isi-table tbody tr:hover {
    background-color: #f8f9fa;
    transition: background-color 0.2s ease;
}

.isi-table tbody tr:nth-child(even) {
    background-color: #fafbfc;
}

.isi-table tbody tr:nth-child(even):hover {
    background-color: #f1f3f4;
}

.isi-table td[rowspan] {
    background-color: #e8f4f8;
    font-weight: 600;
    color: #2c3e50;
    vertical-align: middle;
    text-align: center;
}

.isi-table td:first-child {
    font-weight: 600;
    color: #232222;
    font-family: 'Arial Unicode MS', 'Lucida Sans Unicode', sans-serif;
}

.isi-table td:nth-child(2) {
    font-style: italic;
    color: #2c3e50;
}

.isi-table td:nth-child(3),
.isi-table td:nth-child(4) {
    font-family: 'Arial Unicode MS', 'Lucida Sans Unicode', sans-serif;
    color: #000000;
}

.technique-steps ul li,
.technique-steps ol li{
    flex-direction: column;
    gap: 10px;
    margin-left: 30px;
}