.aoc-container {
    direction: rtl;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    max-width: 350px; /* Adjust based on sidebar width */
    margin: 0 auto;
    background: #fff;
}

.aoc-header {
    display: flex;
    background-color: #f1f1f1;
    border-bottom: 2px solid #e75d15;
    margin-bottom: 15px;
}

.aoc-header-item {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    font-weight: bold;
    color: #666;
    font-size: 16px;
    cursor: pointer;
}

.aoc-header-item.active {
    background-color: #e8e8e8;
    color: #1a568c; /* Blue color matching the design */
    position: relative;
}

.aoc-header-item.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 9px 9px 0;
    border-style: solid;
    border-color: #e75d15 transparent transparent transparent;
}

.aoc-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.aoc-card {
    display: flex;
    align-items: center;
    background-color: #f6f6f6;
    padding: 15px;
    border-radius: 2px;
}

.aoc-avatar-wrapper {
    margin-left: 15px;
    flex-shrink: 0;
}

.aoc-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.aoc-quote-mark {
    font-size: 48px;
    color: #e75d15;
    line-height: 0;
    margin-left: 15px;
    font-family: Georgia, serif;
    font-weight: bold;
    align-self: flex-start;
    margin-top: 25px; /* Adjust quote vertical alignment */
}

.aoc-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aoc-title {
    margin: 0 0 5px 0 !important;
    font-size: 18px !important;
    font-weight: bold;
    color: #000;
    line-height: 1.3;
}

.aoc-title a {
    text-decoration: none;
    color: inherit;
    box-shadow: none;
}

.aoc-title a:hover {
    color: #e75d15;
}

.aoc-author {
    color: #e75d15;
    font-size: 15px;
    font-weight: bold;
}

.aoc-empty {
    padding: 20px;
    text-align: center;
    color: #666;
}
