.abp-container {
    max-width: 900px;
    margin: 20px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}
.abp-header {
    background: #093815;
    padding: 40px 20px;
    text-align: center;
    color: white;
}
.abp-header h2 { margin: 0 0 20px; color: #fff !important; font-size: 28px; text-transform: uppercase; }
.abp-select {
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid #00B71E;
    font-weight: 700;
}
.abp-tabs-container {
    display: flex;
    overflow-x: auto;
    background: #f4f4f4;
    padding: 10px;
    gap: 5px;
    scrollbar-width: thin;
}
.abp-tab-btn {
    padding: 10px 15px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    white-space: nowrap;
}
.abp-tab-btn.active { color: #00B71E; border-bottom-color: #00B71E; }
.abp-day-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #eee;
}
.abp-day-card.today { background: #e8f5e9; border-left: 6px solid #00B71E; }
.abp-day-info { font-weight: 800; color: #093815; min-width: 80px; font-size: 14px; }
.abp-verse-text { flex-grow: 1; font-size: 16px; font-weight: 600; padding: 0 20px; color: #333; }
.abp-actions { display: flex; gap: 8px; }
.abp-btn {
    padding: 8px 16px;
    background: #00B71E;
    color: white !important;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
}
.abp-btn.alt { background: #093815; }

/*  Footer Style */
.abp-attribution {
    background: #fdfdfd;
    padding: 10px; 
    text-align: center;
    font-size: 8px; 
    color: #bbb;    
    border-top: 1px solid #eee;
    letter-spacing: 0.5px;
}

.abp-attribution a {
    color: #00B71E;
    text-decoration: none;
    font-weight: 700;
}

.abp-attribution a:hover {
    text-decoration: underline;
}
@media (max-width: 700px) {
    .abp-day-card { flex-direction: column; text-align: center; gap: 15px; }
    .abp-actions { width: 100%; }
    .abp-btn { flex: 1; }
}