
.bpt-container {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    max-width: 800px;
    margin: 20px auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    color: #1f2937;
    line-height: 1.5;
}
.bpt-header {
    background: #064e3b; /* emerald-900 */
    color: #fbbf24; /* amber-400 */
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.bpt-header h3 { 
    margin: 0; 
    color: #fbbf24 !important; 
    font-size: 1.5rem; 
    font-weight: 700;
    font-family: serif; 
}
.bpt-controls {
    display: flex;
    gap: 8px;
}
.bpt-controls button {
    background: rgba(255,255,255,0.1);
    border: 1px solid #fbbf24;
    color: #fbbf24;
    padding: 6px 16px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    outline: none;
}
.bpt-controls button:hover, .bpt-controls button.active {
    background: #fbbf24;
    color: #064e3b;
}
.bpt-controls button.bpt-btn-pdf {
    background: white;
    color: #064e3b;
    border-color: #e5e7eb;
}
.bpt-controls button.bpt-btn-pdf:hover {
    background: #f0fdf4;
}

/* View Containers */
.bpt-view { padding: 24px; }

/* Grid Cards */
.bpt-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}
.bpt-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #ecfdf5; /* emerald-50/100ish */
    padding: 24px 16px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bpt-card:hover {
    border-color: #6ee7b7;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

/* Next Prayer Style */
.bpt-card.next-prayer {
    background: #065f46 !important; /* emerald-800 */
    border-color: #fbbf24 !important; /* amber-400 */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    z-index: 10;
}
.bpt-card.next-prayer .bpt-name { color: white !important; }
.bpt-card.next-prayer .bpt-time { color: #fcd34d !important; /* amber-300 */ }
.bpt-card.next-prayer .bpt-icon { color: #fbbf24 !important; /* amber-400 */ }

/* Badge */
.bpt-badge {
    position: absolute;
    top: -10px;
    background: #fbbf24;
    color: #064e3b;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

/* Typography & Icons */
.bpt-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: #047857; /* emerald-700 */
}
.bpt-name { 
    display: block; 
    font-size: 1rem; 
    color: #1f2937; /* gray-800 */
    font-weight: 700; 
    margin-bottom: 4px; 
}
.bpt-time { 
    display: block; 
    font-size: 1.5rem; 
    color: #059669; /* emerald-600 */
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.bpt-date { 
    text-align: center; 
    color: #6b7280; 
    font-size: 0.9rem; 
    margin-top: 20px; 
}

/* Table Styles */
.bpt-table-wrap { overflow-x: auto; }
.bpt-table { 
    width: 100%; 
    border-collapse: collapse; 
    font-size: 0.9rem; 
    color: #374151 !important; /* Force gray color */
}
.bpt-table th, .bpt-table td { 
    padding: 12px; 
    border-bottom: 1px solid #e5e7eb; 
    text-align: center; 
}
.bpt-table th { 
    background: #064e3b; 
    color: white !important; 
    text-transform: uppercase; 
    font-size: 0.75rem; 
    letter-spacing: 0.05em;
}
.bpt-table tr:nth-child(even) { background-color: #f9fafb; }
.bpt-table tr:hover { background-color: #ecfdf5 !important; }

/* Today Row in Table */
.bpt-table tr.bpt-today { 
    background: #d1fae5 !important; /* emerald-100 */
    border-left: 4px solid #fbbf24;
}
.bpt-table tr.bpt-today td {
    font-weight: 700;
    color: #064e3b !important;
}

/* Ensure SVG inherits properly */
.bpt-icon svg { width: 32px; height: 32px; }
