/* Custom Styles for KhunPhaen.com */
body { font-family: 'Inter', sans-serif; background-color: #F9F6F0; color: #2D2A26; }
h1, h2, h3, h4, .font-serif { font-family: 'Playfair Display', serif; }

.chart-container { 
    position: relative; 
    width: 100%; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    height: 300px; 
    max-height: 400px; 
}

@media (min-width: 768px) { 
    .chart-container { height: 350px; } 
}

.tab-active { 
    background-color: #8B2626; 
    color: #F9F6F0; 
    border-color: #8B2626; 
}

.tab-inactive { 
    background-color: transparent; 
    color: #2D2A26; 
    border-color: #2D2A26; 
}

.transition-all { 
    transition-property: all; 
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 
    transition-duration: 300ms; 
}

/* Typography & Spacing Overrides */
.custom-spacing p {
    margin-bottom: 2rem !important; 
    line-height: 1.8;
}

.custom-spacing p + ul, 
.custom-spacing p + ol {
    margin-top: 2rem !important; 
}

.custom-spacing ul, 
.custom-spacing ol {
    margin-bottom: 2.5rem !important;
    padding-left: 1.5rem;
}

.custom-spacing li {
    margin-bottom: 0.75rem !important;
}

.custom-spacing h2,
.custom-spacing h3 {
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
    color: #8B2626; /* Temple Red */
}

/* Table Styling for Markdown Output */
.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
    background-color: #fff;
    border: 1px solid #E5E0D8;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.table-wrapper th, 
.table-wrapper td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #E5E0D8;
}

.table-wrapper th {
    background-color: #2D2A26;
    color: #F9F6F0;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.table-wrapper tr:hover {
    background-color: rgba(229, 224, 216, 0.3);
}

/* Custom Temple Audio Player */
.audio-player {
    background: #F9F6F0; /* Parchment */
    border: 1px solid #E5E0D8;
    border-left: 6px solid #8B2626; /* Temple Red */
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #2D2A26;
}

.play-btn {
    flex: 0 0 auto;
    background: #8B2626;
    color: #F9F6F0;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 1.25rem;
    user-select: none;
    line-height: 1;
}

.play-btn:hover {
    transform: scale(1.05);
    background: #D4AF37;
}

.player-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0; /* Prevents flex children from overflowing */
}

.player-title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.1rem;
    color: #2D2A26;
    margin-bottom: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.progress-container {
    background: #E5E0D8;
    height: 8px;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.progress-bar {
    background: #8B2626;
    height: 100%;
    width: 0%;
    border-radius: 4px;
    transition: width 0.1s linear;
}

.time-display {
    font-size: 0.75rem;
    color: #2D2A26;
    margin-top: 0.5rem;
    font-weight: bold;
    letter-spacing: 0.05em;
}
