.cpp-captions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cpp-caption-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cpp-caption-number {
    font-weight: bold;
    margin-right: 10px;
}

.cpp-caption-text {
    flex-grow: 1;
    font-family: "Roboto", sans-serif;
}

.cpp-copy-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cpp-copy-btn:hover {
    background: #005177;
}
